From 5c9195e1cb54715ef2900d0f66d5f050c1b66c13 Mon Sep 17 00:00:00 2001 From: Daniil_Maibe Date: Mon, 13 Nov 2023 16:53:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D1=8B=D0=B5=20=D1=81=D0=B3?= =?UTF-8?q?=D0=B5=D0=BD=D0=B5=D1=80=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD?= =?UTF-8?q?=D0=BD=D1=8B=D0=B5=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B=D0=B5=20?= =?UTF-8?q?=D0=BF=D0=BE=20=D1=81=D0=B5=D0=B0=D0=BD=D1=81=D0=B0=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- master/create_cinema.ddl | 1 + master/create_cinema.ddl.bak | 4 +- master/generate_data.py | 103 +- master/generated_data.txt | 3365 ++++++++++++++++++++++++++++ output_showtime_insert_queries.sql | 3343 +++++++++++++++++++++++++++ showtime_insert_queries.sql | 2987 ++++++++++++++++++++++++ showtime_insert_queries.sql.bak | 3359 +++++++++++++++++++++++++++ 7 files changed, 13122 insertions(+), 40 deletions(-) create mode 100644 output_showtime_insert_queries.sql create mode 100644 showtime_insert_queries.sql.bak diff --git a/master/create_cinema.ddl b/master/create_cinema.ddl index 83cf977..f302c98 100644 --- a/master/create_cinema.ddl +++ b/master/create_cinema.ddl @@ -101,6 +101,7 @@ CREATE TABLE Showtime end_time TIMESTAMP NOT NULL, hall_id INT NOT NULL, film_id INT NOT NULL, + price_coefficient DOUBLE NOT NULL, PRIMARY KEY (showtime_id), FOREIGN KEY (hall_id) REFERENCES Hall(hall_id), FOREIGN KEY (film_id) REFERENCES Film(film_id) diff --git a/master/create_cinema.ddl.bak b/master/create_cinema.ddl.bak index 18cea7a..83cf977 100644 --- a/master/create_cinema.ddl.bak +++ b/master/create_cinema.ddl.bak @@ -3,8 +3,8 @@ CREATE TABLE Cinema cinema_id INT NOT NULL, name VARCHAR(50) NOT NULL, address VARCHAR(100) NOT NULL, - operating_hours_start TIMESTAMP NOT NULL, - operating_hours_end TIMESTAMP NOT NULL, + operating_hours_start TIME NOT NULL, + operating_hours_end TIME NOT NULL, contact_number VARCHAR(12) NOT NULL, PRIMARY KEY (cinema_id) ); diff --git a/master/generate_data.py b/master/generate_data.py index 3a66f0d..1fd6fd2 100644 --- a/master/generate_data.py +++ b/master/generate_data.py @@ -192,54 +192,81 @@ -# Функция для генерации запроса вставки сеанса -def generate_showtime_query(showtime_id, start_time, end_time, hall_id, film_id, price_coefficient): - return f"INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES ({showtime_id}, '{start_time}', '{end_time}', {hall_id}, {film_id}, {price_coefficient});" +# # Функция для генерации запроса вставки сеанса +# def generate_showtime_query(showtime_id, start_time, end_time, hall_id, film_id, price_coefficient): +# return f"INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES ({showtime_id}, '{start_time}', '{end_time}', {hall_id}, {film_id}, {price_coefficient});" -# Генерация запросов на вставку сеансов -def generate_showtime_queries(): - showtime_id_counter = 1 - start_date = datetime(2023, 8, 1) - end_date = datetime(2023, 10, 1) - hall_id = 1 # Номер зала, который мы заполняем - film_ids = list(range(1, 11)) - random.shuffle(film_ids) +# # Генерация запросов на вставку сеансов +# def generate_showtime_queries(): +# showtime_id_counter = 1 +# start_date = datetime(2023, 8, 1) +# end_date = datetime(2023, 10, 1) +# hall_id = 9 # Номер зала, который мы заполняем +# film_ids = list(range(1, 11)) +# random.shuffle(film_ids) - # Словарь для отслеживания времени окончания последнего сеанса в каждом зале - end_times_by_hall = {} +# # Словарь для отслеживания времени окончания последнего сеанса в каждом зале +# end_times_by_hall = {} - with open("showtime_insert_queries.sql", "w") as file: - while start_date <= end_date: - num_sessions = random.randint(5, 7) - interval = timedelta(hours=2) # Интервал между сеансами (2 часа) +# with open("showtime_insert_queries.sql", "w") as file: +# while start_date <= end_date: +# num_sessions = random.randint(5, 7) +# interval = timedelta(hours=2) # Интервал между сеансами (2 часа) - for _ in range(num_sessions): - film_id = film_ids.pop(0) if film_ids else random.randint(1, 10) +# for _ in range(num_sessions): +# film_id = film_ids.pop(0) if film_ids else random.randint(1, 10) - # Поставим price_coefficient 1.2 для фильмов 4 и 5 - price_coefficient = 1.2 if film_id in [4, 5] else 1.0 +# # Поставим price_coefficient 1.2 для фильмов 4 и 5 +# price_coefficient = 1.2 if film_id in [4, 5] else 1.0 - # Время начала сеанса - start_time = start_date.replace(hour=10, minute=0, second=0) +# # Время начала сеанса +# start_time = start_date.replace(hour=10, minute=0, second=0) - # Время окончания последнего сеанса в зале - last_end_time = end_times_by_hall.get(hall_id, start_time) +# # Время окончания последнего сеанса в зале +# last_end_time = end_times_by_hall.get(hall_id, start_time) - # Если текущий сеанс начинается до окончания предыдущего, сдвигаем время начала - if start_time < last_end_time: - start_time = last_end_time + timedelta(hours=1) # Интервал в 1 час +# # Если текущий сеанс начинается до окончания предыдущего, сдвигаем время начала +# if start_time < last_end_time: +# start_time = last_end_time + timedelta(hours=1) # Интервал в 1 час - end_time = start_time + interval +# end_time = start_time + interval - query = generate_showtime_query(showtime_id_counter, start_time, end_time, hall_id, film_id, price_coefficient) - file.write(query + "\n") - showtime_id_counter += 1 +# query = generate_showtime_query(showtime_id_counter, start_time, end_time, hall_id, film_id, price_coefficient) +# file.write(query + "\n") +# showtime_id_counter += 1 - # Обновляем время окончания последнего сеанса в зале - end_times_by_hall[hall_id] = end_time +# # Обновляем время окончания последнего сеанса в зале +# end_times_by_hall[hall_id] = end_time - # Переходим к следующему дню - start_date += timedelta(days=1) +# # Переходим к следующему дню +# start_date += timedelta(days=1) -# Запуск генерации запросов -generate_showtime_queries() +# # Запуск генерации запросов +# generate_showtime_queries() + + +import re + +def generate_unique_values(input_file, output_file): + with open(input_file, 'r') as input_file: + content = input_file.read() + + # Ищем все строки, начинающиеся с INSERT INTO Showtime + pattern = r"INSERT INTO Showtime \(([^)]+)\) VALUES \(([^)]+)\);" + matches = re.finditer(pattern, content) + + # Открываем файл для записи + with open(output_file, 'w') as output_file: + showtime_id_counter = 1 + + # Заменяем значения и записываем в новый файл + for match in matches: + fields = match.group(2).split(", ") + fields[0] = str(showtime_id_counter) # Заменяем первое значение (showtime_id) + showtime_id_counter += 1 + + # Записываем в новый файл + output_file.write(f"INSERT INTO Showtime ({match.group(1)}) VALUES ({', '.join(fields)});\n") + +# Запуск функции с указанием входного и выходного файлов +generate_unique_values("showtime_insert_queries.sql", "output_showtime_insert_queries.sql") diff --git a/master/generated_data.txt b/master/generated_data.txt index 0a49b5b..d2dc3d4 100644 --- a/master/generated_data.txt +++ b/master/generated_data.txt @@ -1644,3 +1644,3368 @@ VALUES (1, 'Онлайн (Сайт)', 'Продажа', NULL, NULL, NULL, 'Активен', 1); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 1, 2, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 2, 10, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 04:00:00', '2023-08-31 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 04:00:00', '2023-09-10 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 04:00:00', '2023-09-16 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 3, 1, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 4, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 5, 5, 1.2); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 04:00:00', '2023-08-30 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-02 04:00:00', '2023-09-02 06:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 6, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 7, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 04:00:00', '2023-09-19 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (380, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (381, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (382, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (383, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (384, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 8, 2, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 04:00:00', '2023-08-05 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 04:00:00', '2023-08-06 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 04:00:00', '2023-08-17 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 9, 8, 1.0); + + + + + + diff --git a/output_showtime_insert_queries.sql b/output_showtime_insert_queries.sql new file mode 100644 index 0000000..71c46fa --- /dev/null +++ b/output_showtime_insert_queries.sql @@ -0,0 +1,3343 @@ +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (380, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (381, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (382, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (383, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (384, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (385, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (386, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (387, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (388, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (389, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (390, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (391, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (392, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (393, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (394, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (395, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (396, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (397, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (398, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (399, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (400, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (401, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (402, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (403, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (404, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (405, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (406, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (407, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (408, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (409, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (410, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (411, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (412, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (413, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (414, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (415, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (416, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (417, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (418, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (419, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (420, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (421, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (422, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (423, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (424, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (425, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (426, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (427, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (428, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (429, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (430, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (431, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (432, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (433, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (434, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (435, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (436, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (437, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (438, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (439, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (440, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (441, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (442, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (443, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (444, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (445, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (446, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (447, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (448, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (449, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (450, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (451, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (452, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (453, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (454, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (455, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (456, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (457, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (458, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (459, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (460, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (461, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (462, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (463, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (464, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (465, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (466, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (467, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (468, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (469, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (470, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (471, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (472, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (473, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (474, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (475, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (476, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (477, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (478, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (479, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (480, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (481, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (482, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (483, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (484, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (485, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (486, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (487, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (488, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (489, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (490, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (491, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (492, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (493, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (494, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (495, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (496, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (497, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (498, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (499, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (500, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (501, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (502, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (503, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (504, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (505, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (506, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (507, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (508, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (509, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (510, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (511, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (512, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (513, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (514, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (515, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (516, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (517, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (518, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (519, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (520, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (521, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (522, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (523, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (524, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (525, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (526, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (527, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (528, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (529, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (530, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (531, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (532, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (533, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (534, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (535, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (536, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (537, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (538, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (539, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (540, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (541, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (542, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (543, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (544, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (545, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (546, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (547, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (548, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (549, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (550, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (551, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (552, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (553, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (554, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (555, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (556, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (557, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (558, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (559, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (560, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (561, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (562, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (563, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (564, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (565, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (566, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (567, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (568, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (569, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (570, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (571, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (572, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (573, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (574, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (575, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (576, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (577, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (578, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (579, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (580, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (581, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (582, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (583, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (584, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (585, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (586, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (587, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (588, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (589, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (590, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (591, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (592, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (593, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (594, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (595, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (596, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (597, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (598, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (599, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (600, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (601, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (602, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (603, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (604, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (605, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (606, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (607, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (608, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (609, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (610, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (611, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (612, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (613, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (614, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (615, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (616, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (617, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (618, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (619, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (620, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (621, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (622, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (623, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (624, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (625, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (626, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (627, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (628, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (629, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (630, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (631, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (632, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (633, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (634, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (635, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (636, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (637, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (638, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (639, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (640, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (641, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (642, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (643, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (644, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (645, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (646, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (647, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (648, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (649, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (650, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (651, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (652, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (653, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (654, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (655, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (656, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (657, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (658, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (659, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (660, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (661, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (662, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (663, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (664, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (665, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (666, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (667, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (668, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (669, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (670, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (671, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (672, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (673, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (674, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (675, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (676, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (677, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (678, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (679, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (680, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (681, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (682, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (683, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (684, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (685, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (686, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (687, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (688, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (689, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (690, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (691, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (692, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (693, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (694, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (695, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (696, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (697, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (698, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (699, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (700, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (701, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (702, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (703, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (704, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (705, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (706, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (707, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (708, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (709, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (710, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (711, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (712, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (713, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (714, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (715, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (716, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (717, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (718, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (719, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (720, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (721, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (722, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (723, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (724, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (725, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (726, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (727, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (728, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (729, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (730, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (731, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (732, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (733, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (734, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (735, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (736, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (737, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (738, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (739, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (740, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (741, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (742, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (743, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (744, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (745, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (746, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (747, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (748, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (749, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (750, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (751, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (752, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (753, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (754, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (755, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (756, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (757, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (758, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (759, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (760, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (761, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (762, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (763, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (764, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (765, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (766, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (767, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (768, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (769, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (770, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (771, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (772, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (773, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (774, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (775, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (776, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (777, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (778, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (779, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (780, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (781, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (782, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (783, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (784, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (785, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (786, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (787, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (788, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (789, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (790, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (791, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (792, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (793, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (794, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (795, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (796, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (797, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (798, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (799, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (800, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (801, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (802, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (803, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (804, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (805, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (806, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (807, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (808, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (809, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (810, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (811, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (812, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (813, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (814, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (815, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (816, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (817, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (818, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (819, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (820, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (821, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (822, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (823, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (824, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (825, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (826, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (827, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (828, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (829, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (830, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (831, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (832, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (833, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (834, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (835, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (836, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (837, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (838, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (839, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (840, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (841, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (842, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (843, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (844, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (845, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (846, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (847, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (848, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (849, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (850, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (851, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (852, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (853, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (854, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (855, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (856, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (857, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (858, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (859, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (860, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (861, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (862, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (863, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (864, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (865, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (866, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (867, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (868, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (869, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (870, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (871, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (872, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (873, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (874, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (875, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (876, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (877, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (878, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (879, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (880, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (881, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (882, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (883, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (884, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (885, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (886, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (887, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (888, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (889, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (890, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (891, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (892, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (893, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (894, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (895, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (896, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (897, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (898, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (899, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (900, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (901, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (902, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (903, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (904, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (905, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (906, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (907, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (908, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (909, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (910, '2023-08-31 04:00:00', '2023-08-31 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (911, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (912, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (913, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (914, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (915, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (916, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (917, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (918, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (919, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (920, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (921, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (922, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (923, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (924, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (925, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (926, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (927, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (928, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (929, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (930, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (931, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (932, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (933, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (934, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (935, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (936, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (937, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (938, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (939, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (940, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (941, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (942, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (943, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (944, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (945, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (946, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (947, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (948, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (949, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (950, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (951, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (952, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (953, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (954, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (955, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (956, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (957, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (958, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (959, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (960, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (961, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (962, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (963, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (964, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (965, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (966, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (967, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (968, '2023-09-10 04:00:00', '2023-09-10 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (969, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (970, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (971, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (972, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (973, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (974, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (975, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (976, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (977, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (978, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (979, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (980, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (981, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (982, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (983, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (984, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (985, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (986, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (987, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (988, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (989, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (990, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (991, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (992, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (993, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (994, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (995, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (996, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (997, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (998, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (999, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1000, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1001, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1002, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1003, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1004, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1005, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1006, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1007, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1008, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1009, '2023-09-16 04:00:00', '2023-09-16 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1010, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1011, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1012, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1013, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1014, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1015, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1016, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1017, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1018, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1019, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1020, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1021, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1022, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1023, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1024, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1025, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1026, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1027, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1028, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1029, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1030, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1031, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1032, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1033, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1034, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1035, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1036, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1037, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1038, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1039, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1040, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1041, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1042, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1043, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1044, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1045, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1046, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1047, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1048, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1049, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1050, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1051, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1052, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1053, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1054, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1055, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1056, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1057, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1058, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1059, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1060, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1061, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1062, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1063, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1064, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1065, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1066, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1067, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1068, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1069, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1070, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1071, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1072, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1073, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1074, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1075, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1076, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1077, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1078, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1079, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1080, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1081, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1082, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1083, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1084, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1085, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1086, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1087, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1088, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1089, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1090, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1091, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1092, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1093, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1094, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1095, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1096, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1097, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1098, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1099, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1100, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1101, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1102, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1103, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1104, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1105, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1106, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1107, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1108, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1109, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1110, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1111, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1112, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1113, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1114, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1115, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1116, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1117, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1118, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1119, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1120, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1121, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1122, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1123, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1124, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1125, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1126, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1127, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1128, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1129, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1130, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1131, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1132, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1133, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1134, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1135, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1136, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1137, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1138, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1139, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1140, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1141, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1142, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1143, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1144, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1145, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1146, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1147, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1148, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1149, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1150, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1151, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1152, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1153, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1154, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1155, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1156, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1157, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1158, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1159, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1160, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1161, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1162, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1163, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1164, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1165, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1166, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1167, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1168, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1169, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1170, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1171, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1172, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1173, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1174, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1175, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1176, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1177, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1178, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1179, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1180, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1181, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1182, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1183, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1184, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1185, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1186, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1187, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1188, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1189, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1190, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1191, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1192, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1193, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1194, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1195, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1196, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1197, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1198, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1199, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1200, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1201, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1202, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1203, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1204, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1205, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1206, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1207, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1208, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1209, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1210, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1211, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1212, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1213, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1214, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1215, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1216, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1217, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1218, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1219, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1220, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1221, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1222, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1223, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1224, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1225, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1226, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1227, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1228, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1229, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1230, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1231, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1232, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1233, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1234, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1235, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1236, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1237, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1238, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1239, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1240, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1241, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1242, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1243, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1244, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1245, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1246, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1247, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1248, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1249, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1250, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1251, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1252, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1253, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1254, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1255, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1256, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1257, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1258, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1259, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1260, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1261, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1262, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1263, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1264, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1265, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1266, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1267, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1268, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1269, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1270, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1271, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1272, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1273, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1274, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1275, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1276, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1277, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1278, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1279, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1280, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1281, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1282, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1283, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1284, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1285, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1286, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1287, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1288, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1289, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1290, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1291, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1292, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1293, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1294, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1295, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1296, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1297, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1298, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1299, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1300, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1301, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1302, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1303, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1304, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1305, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1306, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1307, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1308, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1309, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1310, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1311, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1312, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1313, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1314, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1315, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1316, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1317, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1318, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1319, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1320, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1321, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1322, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1323, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1324, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1325, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1326, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1327, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1328, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1329, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1330, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1331, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1332, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1333, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1334, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1335, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1336, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1337, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1338, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1339, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1340, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1341, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1342, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1343, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1344, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1345, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1346, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1347, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1348, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1349, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1350, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1351, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1352, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1353, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1354, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1355, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1356, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1357, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1358, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1359, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1360, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1361, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1362, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1363, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1364, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1365, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1366, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1367, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1368, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1369, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1370, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1371, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1372, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1373, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1374, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1375, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1376, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1377, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1378, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1379, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1380, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1381, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1382, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1383, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1384, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1385, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1386, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1387, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1388, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1389, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1390, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1391, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1392, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1393, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1394, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1395, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1396, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1397, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1398, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1399, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1400, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1401, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1402, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1403, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1404, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1405, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1406, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1407, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1408, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1409, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1410, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1411, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1412, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1413, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1414, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1415, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1416, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1417, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1418, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1419, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1420, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1421, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1422, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1423, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1424, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1425, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1426, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1427, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1428, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1429, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1430, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1431, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1432, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1433, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1434, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1435, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1436, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1437, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1438, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1439, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1440, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1441, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1442, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1443, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1444, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1445, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1446, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1447, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1448, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1449, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1450, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1451, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1452, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1453, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1454, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1455, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1456, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1457, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1458, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1459, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1460, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1461, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1462, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1463, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1464, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1465, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1466, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1467, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1468, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1469, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1470, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1471, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1472, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1473, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1474, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1475, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1476, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1477, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1478, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1479, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1480, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1481, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1482, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1483, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1484, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1485, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1486, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1487, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1488, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1489, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1490, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1491, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1492, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1493, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1494, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1495, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1496, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1497, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1498, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1499, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1500, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1501, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1502, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1503, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1504, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1505, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1506, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1507, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1508, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1509, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1510, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1511, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1512, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1513, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1514, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1515, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1516, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1517, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1518, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1519, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1520, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1521, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1522, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1523, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1524, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1525, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1526, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1527, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1528, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1529, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1530, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1531, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1532, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1533, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1534, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1535, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1536, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1537, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1538, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1539, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1540, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1541, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1542, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1543, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1544, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1545, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1546, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1547, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1548, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1549, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1550, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1551, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1552, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1553, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1554, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1555, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1556, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1557, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1558, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1559, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1560, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1561, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1562, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1563, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1564, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1565, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1566, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1567, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1568, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1569, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1570, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1571, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1572, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1573, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1574, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1575, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1576, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1577, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1578, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1579, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1580, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1581, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1582, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1583, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1584, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1585, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1586, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1587, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1588, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1589, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1590, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1591, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1592, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1593, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1594, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1595, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1596, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1597, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1598, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1599, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1600, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1601, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1602, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1603, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1604, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1605, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1606, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1607, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1608, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1609, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1610, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1611, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1612, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1613, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1614, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1615, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1616, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1617, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1618, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1619, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1620, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1621, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1622, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1623, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1624, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1625, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1626, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1627, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1628, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1629, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1630, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1631, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1632, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1633, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1634, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1635, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1636, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1637, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1638, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1639, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1640, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1641, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1642, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1643, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1644, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1645, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1646, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1647, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1648, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1649, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1650, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1651, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1652, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1653, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1654, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1655, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1656, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1657, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1658, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1659, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1660, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1661, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1662, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1663, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1664, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1665, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1666, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1667, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1668, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1669, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1670, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1671, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1672, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1673, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1674, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1675, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1676, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1677, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1678, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1679, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1680, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1681, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1682, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1683, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1684, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1685, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1686, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1687, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1688, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1689, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1690, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1691, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1692, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1693, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1694, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1695, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1696, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1697, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1698, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1699, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1700, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1701, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1702, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1703, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1704, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1705, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1706, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1707, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1708, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1709, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1710, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1711, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1712, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1713, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1714, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1715, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1716, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1717, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1718, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1719, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1720, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1721, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1722, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1723, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1724, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1725, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1726, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1727, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1728, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1729, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1730, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1731, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1732, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1733, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1734, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1735, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1736, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1737, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1738, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1739, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1740, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1741, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1742, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1743, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1744, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1745, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1746, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1747, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1748, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1749, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1750, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1751, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1752, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1753, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1754, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1755, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1756, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1757, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1758, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1759, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1760, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1761, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1762, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1763, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1764, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1765, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1766, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1767, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1768, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1769, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1770, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1771, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1772, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1773, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1774, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1775, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1776, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1777, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1778, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1779, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1780, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1781, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1782, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1783, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1784, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1785, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1786, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1787, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1788, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1789, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1790, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1791, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1792, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1793, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1794, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1795, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1796, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1797, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1798, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1799, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1800, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1801, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1802, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1803, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1804, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1805, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1806, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1807, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1808, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1809, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1810, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1811, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1812, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1813, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1814, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1815, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1816, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1817, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1818, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1819, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1820, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1821, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1822, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1823, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1824, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1825, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1826, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1827, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1828, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1829, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1830, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1831, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1832, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1833, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1834, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1835, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1836, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1837, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1838, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1839, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1840, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1841, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1842, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1843, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1844, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1845, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1846, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1847, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1848, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1849, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1850, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1851, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1852, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1853, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1854, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1855, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1856, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1857, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1858, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1859, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1860, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1861, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1862, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1863, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1864, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1865, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1866, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1867, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1868, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1869, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1870, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1871, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1872, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1873, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1874, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1875, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1876, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1877, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1878, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1879, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1880, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1881, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1882, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1883, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1884, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1885, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1886, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1887, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1888, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1889, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1890, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1891, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1892, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1893, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1894, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1895, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1896, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1897, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1898, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1899, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1900, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1901, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1902, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1903, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1904, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1905, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1906, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1907, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1908, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1909, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1910, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1911, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1912, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1913, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1914, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1915, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1916, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1917, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1918, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1919, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1920, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1921, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1922, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1923, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1924, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1925, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1926, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1927, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1928, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1929, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1930, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1931, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1932, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1933, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1934, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1935, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1936, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1937, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1938, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1939, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1940, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1941, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1942, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1943, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1944, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1945, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1946, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1947, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1948, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1949, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1950, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1951, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1952, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1953, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1954, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1955, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1956, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1957, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1958, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1959, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1960, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1961, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1962, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1963, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1964, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1965, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1966, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1967, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1968, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1969, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1970, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1971, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1972, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1973, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1974, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1975, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1976, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1977, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1978, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1979, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1980, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1981, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1982, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1983, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1984, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1985, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1986, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1987, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1988, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1989, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1990, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1991, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1992, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1993, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1994, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1995, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1996, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1997, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1998, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1999, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2000, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2001, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2002, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2003, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2004, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2005, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2006, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2007, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2008, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2009, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2010, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2011, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2012, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2013, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2014, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2015, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2016, '2023-08-30 04:00:00', '2023-08-30 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2017, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2018, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2019, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2020, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2021, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2022, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2023, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2024, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2025, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2026, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2027, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2028, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2029, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2030, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2031, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2032, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2033, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2034, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2035, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2036, '2023-09-02 04:00:00', '2023-09-02 06:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2037, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2038, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2039, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2040, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2041, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2042, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2043, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2044, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2045, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2046, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2047, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2048, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2049, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2050, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2051, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2052, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2053, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2054, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2055, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2056, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2057, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2058, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2059, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2060, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2061, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2062, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2063, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2064, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2065, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2066, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2067, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2068, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2069, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2070, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2071, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2072, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2073, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2074, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2075, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2076, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2077, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2078, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2079, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2080, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2081, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2082, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2083, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2084, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2085, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2086, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2087, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2088, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2089, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2090, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2091, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2092, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2093, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2094, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2095, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2096, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2097, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2098, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2099, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2100, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2101, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2102, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2103, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2104, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2105, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2106, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2107, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2108, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2109, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2110, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2111, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2112, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2113, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2114, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2115, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2116, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2117, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2118, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2119, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2120, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2121, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2122, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2123, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2124, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2125, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2126, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2127, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2128, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2129, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2130, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2131, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2132, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2133, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2134, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2135, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2136, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2137, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2138, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2139, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2140, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2141, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2142, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2143, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2144, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2145, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2146, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2147, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2148, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2149, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2150, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2151, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2152, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2153, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2154, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2155, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2156, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2157, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2158, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2159, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2160, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2161, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2162, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2163, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2164, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2165, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2166, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2167, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2168, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2169, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2170, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2171, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2172, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2173, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2174, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2175, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2176, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2177, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2178, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2179, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2180, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2181, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2182, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2183, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2184, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2185, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2186, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2187, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2188, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2189, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2190, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2191, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2192, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2193, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2194, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2195, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2196, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2197, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2198, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2199, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2200, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2201, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2202, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2203, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2204, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2205, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2206, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2207, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2208, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2209, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2210, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2211, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2212, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2213, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2214, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2215, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2216, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2217, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2218, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2219, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2220, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2221, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2222, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2223, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2224, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2225, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2226, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2227, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2228, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2229, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2230, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2231, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2232, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2233, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2234, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2235, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2236, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2237, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2238, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2239, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2240, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2241, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2242, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2243, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2244, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2245, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2246, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2247, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2248, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2249, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2250, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2251, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2252, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2253, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2254, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2255, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2256, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2257, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2258, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2259, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2260, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2261, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2262, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2263, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2264, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2265, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2266, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2267, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2268, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2269, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2270, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2271, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2272, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2273, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2274, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2275, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2276, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2277, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2278, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2279, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2280, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2281, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2282, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2283, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2284, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2285, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2286, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2287, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2288, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2289, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2290, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2291, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2292, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2293, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2294, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2295, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2296, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2297, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2298, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2299, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2300, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2301, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2302, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2303, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2304, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2305, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2306, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2307, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2308, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2309, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2310, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2311, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2312, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2313, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2314, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2315, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2316, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2317, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2318, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2319, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2320, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2321, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2322, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2323, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2324, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2325, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2326, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2327, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2328, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2329, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2330, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2331, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2332, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2333, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2334, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2335, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2336, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2337, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2338, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2339, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2340, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2341, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2342, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2343, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2344, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2345, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2346, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2347, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2348, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2349, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2350, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2351, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2352, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2353, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2354, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2355, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2356, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2357, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2358, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2359, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2360, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2361, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2362, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2363, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2364, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2365, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2366, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2367, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2368, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2369, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2370, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2371, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2372, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2373, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2374, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2375, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2376, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2377, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2378, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2379, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2380, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2381, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2382, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2383, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2384, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2385, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2386, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2387, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2388, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2389, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2390, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2391, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2392, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2393, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2394, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2395, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2396, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2397, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2398, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2399, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2400, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2401, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2402, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2403, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2404, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2405, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2406, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2407, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2408, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2409, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2410, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2411, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2412, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2413, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2414, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2415, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2416, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2417, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2418, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2419, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2420, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2421, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2422, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2423, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2424, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2425, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2426, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2427, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2428, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2429, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2430, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2431, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2432, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2433, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2434, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2435, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2436, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2437, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2438, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2439, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2440, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2441, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2442, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2443, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2444, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2445, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2446, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2447, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2448, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2449, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2450, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2451, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2452, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2453, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2454, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2455, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2456, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2457, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2458, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2459, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2460, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2461, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2462, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2463, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2464, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2465, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2466, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2467, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2468, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2469, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2470, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2471, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2472, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2473, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2474, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2475, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2476, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2477, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2478, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2479, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2480, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2481, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2482, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2483, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2484, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2485, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2486, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2487, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2488, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2489, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2490, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2491, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2492, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2493, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2494, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2495, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2496, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2497, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2498, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2499, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2500, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2501, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2502, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2503, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2504, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2505, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2506, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2507, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2508, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2509, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2510, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2511, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2512, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2513, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2514, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2515, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2516, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2517, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2518, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2519, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2520, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2521, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2522, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2523, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2524, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2525, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2526, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2527, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2528, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2529, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2530, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2531, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2532, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2533, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2534, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2535, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2536, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2537, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2538, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2539, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2540, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2541, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2542, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2543, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2544, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2545, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2546, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2547, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2548, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2549, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2550, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2551, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2552, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2553, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2554, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2555, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2556, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2557, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2558, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2559, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2560, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2561, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2562, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2563, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2564, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2565, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2566, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2567, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2568, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2569, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2570, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2571, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2572, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2573, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2574, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2575, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2576, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2577, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2578, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2579, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2580, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2581, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2582, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2583, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2584, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2585, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2586, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2587, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2588, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2589, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2590, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2591, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2592, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2593, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2594, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2595, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2596, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2597, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2598, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2599, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2600, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2601, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2602, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2603, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2604, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2605, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2606, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2607, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2608, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2609, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2610, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2611, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2612, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2613, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2614, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2615, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2616, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2617, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2618, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2619, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2620, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2621, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2622, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2623, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2624, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2625, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2626, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2627, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2628, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2629, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2630, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2631, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2632, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2633, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2634, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2635, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2636, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2637, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2638, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2639, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2640, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2641, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2642, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2643, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2644, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2645, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2646, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2647, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2648, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2649, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2650, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2651, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2652, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2653, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2654, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2655, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2656, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2657, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2658, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2659, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2660, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2661, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2662, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2663, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2664, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2665, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2666, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2667, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2668, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2669, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2670, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2671, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2672, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2673, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2674, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2675, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2676, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2677, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2678, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2679, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2680, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2681, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2682, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2683, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2684, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2685, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2686, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2687, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2688, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2689, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2690, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2691, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2692, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2693, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2694, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2695, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2696, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2697, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2698, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2699, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2700, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2701, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2702, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2703, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2704, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2705, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2706, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2707, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2708, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2709, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2710, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2711, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2712, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2713, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2714, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2715, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2716, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2717, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2718, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2719, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2720, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2721, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2722, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2723, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2724, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2725, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2726, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2727, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2728, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2729, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2730, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2731, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2732, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2733, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2734, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2735, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2736, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2737, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2738, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2739, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2740, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2741, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2742, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2743, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2744, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2745, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2746, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2747, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2748, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2749, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2750, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2751, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2752, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2753, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2754, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2755, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2756, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2757, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2758, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2759, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2760, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2761, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2762, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2763, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2764, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2765, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2766, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2767, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2768, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2769, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2770, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2771, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2772, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2773, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2774, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2775, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2776, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2777, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2778, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2779, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2780, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2781, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2782, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2783, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2784, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2785, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2786, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2787, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2788, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2789, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2790, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2791, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2792, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2793, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2794, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2795, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2796, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2797, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2798, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2799, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2800, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2801, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2802, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2803, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2804, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2805, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2806, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2807, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2808, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2809, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2810, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2811, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2812, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2813, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2814, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2815, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2816, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2817, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2818, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2819, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2820, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2821, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2822, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2823, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2824, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2825, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2826, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2827, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2828, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2829, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2830, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2831, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2832, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2833, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2834, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2835, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2836, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2837, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2838, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2839, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2840, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2841, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2842, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2843, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2844, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2845, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2846, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2847, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2848, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2849, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2850, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2851, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2852, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2853, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2854, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2855, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2856, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2857, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2858, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2859, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2860, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2861, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2862, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2863, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2864, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2865, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2866, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2867, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2868, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2869, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2870, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2871, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2872, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2873, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2874, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2875, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2876, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2877, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2878, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2879, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2880, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2881, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2882, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2883, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2884, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2885, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2886, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2887, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2888, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2889, '2023-09-19 04:00:00', '2023-09-19 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2890, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2891, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2892, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2893, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2894, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2895, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2896, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2897, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2898, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2899, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2900, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2901, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2902, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2903, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2904, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2905, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2906, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2907, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2908, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2909, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2910, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2911, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2912, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2913, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2914, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2915, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2916, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2917, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2918, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2919, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2920, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2921, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2922, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2923, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2924, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2925, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2926, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2927, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2928, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2929, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2930, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2931, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2932, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2933, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2934, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2935, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2936, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2937, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2938, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2939, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2940, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2941, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2942, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2943, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2944, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2945, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2946, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2947, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2948, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2949, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2950, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2951, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2952, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2953, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2954, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2955, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2956, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2957, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2958, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2959, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2960, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2961, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2962, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2963, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2964, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2965, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2966, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2967, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2968, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2969, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2970, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2971, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2972, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2973, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2974, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2975, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2976, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2977, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2978, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2979, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2980, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2981, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2982, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2983, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2984, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2985, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2986, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2987, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2988, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2989, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2990, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2991, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2992, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2993, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2994, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2995, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2996, '2023-08-05 04:00:00', '2023-08-05 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2997, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2998, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2999, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3000, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3001, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3002, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3003, '2023-08-06 04:00:00', '2023-08-06 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3004, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3005, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3006, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3007, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3008, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3009, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3010, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3011, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3012, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3013, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3014, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3015, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3016, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3017, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3018, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3019, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3020, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3021, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3022, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3023, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3024, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3025, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3026, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3027, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3028, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3029, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3030, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3031, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3032, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3033, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3034, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3035, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3036, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3037, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3038, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3039, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3040, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3041, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3042, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3043, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3044, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3045, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3046, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3047, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3048, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3049, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3050, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3051, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3052, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3053, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3054, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3055, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3056, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3057, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3058, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3059, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3060, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3061, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3062, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3063, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3064, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3065, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3066, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3067, '2023-08-17 04:00:00', '2023-08-17 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3068, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3069, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3070, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3071, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3072, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3073, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3074, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3075, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3076, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3077, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3078, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3079, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3080, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3081, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3082, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3083, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3084, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3085, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3086, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3087, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3088, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3089, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3090, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3091, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3092, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3093, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3094, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3095, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3096, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3097, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3098, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3099, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3100, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3101, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3102, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3103, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3104, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3105, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3106, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3107, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3108, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3109, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3110, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3111, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3112, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3113, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3114, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3115, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3116, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3117, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3118, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3119, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3120, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3121, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3122, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3123, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3124, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3125, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3126, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3127, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3128, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3129, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3130, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3131, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3132, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3133, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3134, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3135, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3136, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3137, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3138, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3139, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3140, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3141, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3142, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3143, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3144, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3145, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3146, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3147, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3148, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3149, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3150, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3151, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3152, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3153, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3154, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3155, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3156, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3157, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3158, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3159, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3160, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3161, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3162, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3163, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3164, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3165, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3166, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3167, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3168, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3169, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3170, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3171, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3172, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3173, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3174, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3175, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3176, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3177, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3178, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3179, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3180, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3181, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3182, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3183, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3184, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3185, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3186, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3187, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3188, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3189, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3190, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3191, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3192, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3193, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3194, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3195, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3196, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3197, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3198, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3199, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3200, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3201, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3202, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3203, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3204, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3205, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3206, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3207, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3208, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3209, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3210, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3211, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3212, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3213, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3214, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3215, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3216, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3217, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3218, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3219, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3220, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3221, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3222, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3223, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3224, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3225, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3226, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3227, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3228, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3229, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3230, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3231, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3232, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3233, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3234, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3235, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3236, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3237, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3238, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3239, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3240, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3241, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3242, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3243, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3244, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3245, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3246, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3247, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3248, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3249, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3250, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3251, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3252, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3253, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3254, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3255, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3256, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3257, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3258, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3259, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3260, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3261, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3262, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3263, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3264, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3265, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3266, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3267, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3268, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3269, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3270, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3271, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3272, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3273, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3274, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3275, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3276, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3277, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3278, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3279, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3280, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3281, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3282, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3283, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3284, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3285, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3286, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3287, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3288, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3289, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3290, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3291, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3292, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3293, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3294, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3295, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3296, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3297, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3298, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3299, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3300, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3301, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3302, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3303, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3304, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3305, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3306, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3307, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3308, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3309, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3310, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3311, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3312, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3313, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3314, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3315, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3316, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3317, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3318, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3319, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3320, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3321, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3322, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3323, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3324, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3325, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3326, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3327, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3328, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3329, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3330, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3331, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3332, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3333, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3334, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3335, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3336, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3337, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3338, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3339, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3340, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3341, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3342, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3343, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 9, 8, 1.0); diff --git a/showtime_insert_queries.sql b/showtime_insert_queries.sql index 67316bb..f285925 100644 --- a/showtime_insert_queries.sql +++ b/showtime_insert_queries.sql @@ -370,3 +370,2990 @@ INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 1, 7, 1.0); INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 1, 7, 1.0); INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 1, 2, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 2, 10, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 04:00:00', '2023-08-31 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 04:00:00', '2023-09-10 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 04:00:00', '2023-09-16 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 3, 1, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 4, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 5, 5, 1.2); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 04:00:00', '2023-08-30 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-02 04:00:00', '2023-09-02 06:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 6, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 7, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 04:00:00', '2023-09-19 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (380, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (381, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (382, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (383, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (384, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 8, 2, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 04:00:00', '2023-08-05 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 04:00:00', '2023-08-06 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 04:00:00', '2023-08-17 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 9, 8, 1.0); \ No newline at end of file diff --git a/showtime_insert_queries.sql.bak b/showtime_insert_queries.sql.bak new file mode 100644 index 0000000..9e82ac1 --- /dev/null +++ b/showtime_insert_queries.sql.bak @@ -0,0 +1,3359 @@ +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 1, 2, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 2, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 2, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 2, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 2, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 2, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 2, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 2, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 2, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 2, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 2, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 2, 10, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 04:00:00', '2023-08-31 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 04:00:00', '2023-09-10 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 04:00:00', '2023-09-16 06:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 3, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 3, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 3, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 3, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 3, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 3, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 3, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 3, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 3, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 3, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 3, 1, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 4, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 4, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 4, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 4, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 4, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 4, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 4, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 4, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 4, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 4, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 4, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 04:00:00', '2023-08-21 06:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-13 04:00:00', '2023-09-13 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-15 04:00:00', '2023-09-15 06:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 5, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 5, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 5, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 5, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 5, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 5, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 5, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 5, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 5, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 5, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 5, 5, 1.2); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-30 04:00:00', '2023-08-30 06:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-02 04:00:00', '2023-09-02 06:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-08 04:00:00', '2023-09-08 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 6, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 6, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 6, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 6, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 6, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 6, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 6, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 6, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 6, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 6, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 6, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-06 04:00:00', '2023-09-06 06:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-11 04:00:00', '2023-09-11 06:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 04:00:00', '2023-09-24 06:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 01:00:00', '2023-09-25 03:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 04:00:00', '2023-09-25 06:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 7, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 7, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 7, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 7, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 7, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 7, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 7, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 7, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 7, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 7, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-02 04:00:00', '2023-10-02 06:00:00', 7, 3, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 01:00:00', '2023-08-11 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 04:00:00', '2023-08-11 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 04:00:00', '2023-08-15 06:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 04:00:00', '2023-08-18 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 04:00:00', '2023-08-20 06:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 04:00:00', '2023-08-22 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-23 01:00:00', '2023-08-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-23 04:00:00', '2023-08-23 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-24 04:00:00', '2023-08-24 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 01:00:00', '2023-09-15 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 04:00:00', '2023-09-18 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 04:00:00', '2023-09-19 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 01:00:00', '2023-09-23 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 04:00:00', '2023-09-23 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-26 04:00:00', '2023-09-26 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 8, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 8, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-28 04:00:00', '2023-09-28 06:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 8, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-09-30 01:00:00', '2023-09-30 03:00:00', 8, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-09-30 04:00:00', '2023-09-30 06:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (374, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 8, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (375, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (376, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 8, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (377, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (378, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (379, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 8, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (380, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 8, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (381, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (382, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 8, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (383, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 8, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (384, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 8, 2, 1.0); + + +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-03 01:00:00', '2023-08-03 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-03 04:00:00', '2023-08-03 06:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 01:00:00', '2023-08-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 04:00:00', '2023-08-04 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 04:00:00', '2023-08-05 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 01:00:00', '2023-08-06 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 04:00:00', '2023-08-06 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 01:00:00', '2023-08-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 04:00:00', '2023-08-09 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-14 01:00:00', '2023-08-14 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 04:00:00', '2023-08-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-17 01:00:00', '2023-08-17 03:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 04:00:00', '2023-08-17 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 04:00:00', '2023-08-19 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 01:00:00', '2023-08-21 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 01:00:00', '2023-08-22 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 04:00:00', '2023-08-25 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 04:00:00', '2023-08-27 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 04:00:00', '2023-09-01 06:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 01:00:00', '2023-09-02 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 01:00:00', '2023-09-03 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-03 04:00:00', '2023-09-03 06:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-04 04:00:00', '2023-09-04 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-06 01:00:00', '2023-09-06 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-08 01:00:00', '2023-09-08 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-09 04:00:00', '2023-09-09 06:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-13 01:00:00', '2023-09-13 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-14 04:00:00', '2023-09-14 06:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 9, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 9, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 9, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 9, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 9, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 9, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 9, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 9, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 9, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 9, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (373, '2023-10-02 01:00:00', '2023-10-02 03:00:00', 9, 8, 1.0);