-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_data.sql
More file actions
1599 lines (1533 loc) · 367 KB
/
my_data.sql
File metadata and controls
1599 lines (1533 loc) · 367 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
\restrict UM8qtCWZqLNiQAW7AJe4C1R9BJcaSEtEgpqRxM0czRcDzIjKoKIz36sSXBloOOa
-- Dumped from database version 17.6
-- Dumped by pg_dump version 17.6
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Data for Name: announcements; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (1, 'Welcome Back to School!', 'Welcome to the new academic year! We are excited to have all students back. Please check your schedules and report to your assigned classrooms.', 'all', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (2, 'Parent-Teacher Conference', 'Parent-Teacher conferences will be held next Friday from 2:00 PM to 6:00 PM. Please schedule your appointments with your child''s teachers.', 'parents', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (3, 'Math Competition Registration', 'Students interested in participating in the regional math competition should register with Mr. Rodriguez by next Monday. Practice sessions start next week.', 'students', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (4, 'Staff Meeting - Important', 'All teaching staff are required to attend the monthly staff meeting this Thursday at 3:30 PM in the main conference room.', 'teachers', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (5, 'School Library Hours Extended', 'The school library will now be open until 6:00 PM on weekdays and 2:00 PM on Saturdays to support student learning.', 'students', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (6, 'Sports Day Event', 'Annual Sports Day will be held on Friday, October 15th. All students are encouraged to participate. Registration forms are available at the main office.', 'all', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (7, 'New Course Offerings', 'We are excited to announce new elective courses for next semester: Digital Art, Creative Writing, and Environmental Science.', 'students', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (8, 'School Maintenance Notice', 'The east wing will undergo maintenance this weekend. All activities scheduled in that area have been moved to alternative locations.', 'all', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (9, 'Graduation Ceremony Planning', 'Grade 12 students and parents - graduation ceremony planning meeting scheduled for next Wednesday at 4:00 PM in the auditorium.', 'students', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (10, 'Holiday Schedule', 'School will be closed for the winter holidays from December 20th to January 5th. Classes resume on January 6th. Happy holidays!', 'all', 'published', '2025-09-22 12:00:06.546139');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (14, 'hey teachers', 'hi', 'teachers', 'published', '2025-10-05 22:05:15.081358');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (15, 'hey students', 'hi', 'students', 'published', '2025-10-05 22:05:28.515455');
INSERT INTO public.announcements (id, title, content, target_audience, status, created_at) VALUES (16, 'hey all', 'hi', 'all', 'published', '2025-10-05 22:05:37.727268');
--
-- Data for Name: rooms; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (1, '601', 'Grade 6 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (2, '701', 'Grade 7 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (3, '801', 'Grade 8 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (4, '901', 'Grade 9 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (5, '1001', 'Grade 10 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (6, '1101', 'Grade 11 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (7, '1201', 'Grade 12 Section A', 20, 'classroom', true, '2025-09-18 16:54:02.268215');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (11, '602', 'Grade 6 Section b', 5, 'classroom', true, '2025-09-30 11:52:09.54254');
INSERT INTO public.rooms (id, room_number, room_name, capacity, room_type, is_available, created_at) VALUES (13, '702', 'Grade 7 Section B', 30, 'classroom', true, '2025-09-30 12:45:35.007097');
--
-- Data for Name: class_sections; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (1, 'Grade 6', 'A', 1, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (2, 'Grade 7', 'A', 2, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (3, 'Grade 8', 'A', 3, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (4, 'Grade 9', 'A', 4, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (5, 'Grade 10', 'A', 5, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (6, 'Grade 11', 'A', 6, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (7, 'Grade 12', 'A', 7, 20, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (10, 'Grade 6', 'B', 11, 5, true, '2025-09-30 12:00:08.644482');
INSERT INTO public.class_sections (id, grade_level, section_name, room_id, student_capacity, is_active, created_at) VALUES (11, 'Grade 7', 'B', 13, 30, true, '2025-09-30 12:59:14.425758');
--
-- Data for Name: courses; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (1, 'ENG6', 'English Grade 6', 'Reading, writing, and language arts', 'English', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (2, 'MATH6', 'Mathematics Grade 6', 'Basic arithmetic and pre-algebra concepts', 'Mathematics', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (3, 'SCI6', 'Science Grade 6', 'Introduction to scientific concepts', 'Science', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (4, 'SS6', 'Social Studies Grade 6', 'World history and geography', 'Social Studies', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (5, 'SPAN6', 'Spanish Grade 6', 'Beginning Spanish language', 'Spanish', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (6, 'ART6', 'Art Grade 6', 'Drawing, painting, and crafts', 'Art', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (7, 'PE6', 'Physical Education Grade 6', 'Physical fitness and sports', 'Physical Education', 'Grade 6', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (8, 'ENG7', 'English Grade 7', 'Literature and advanced writing', 'English', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (9, 'MATH7', 'Mathematics Grade 7', 'Pre-algebra and advanced arithmetic', 'Mathematics', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (10, 'SCI7', 'Science Grade 7', 'Life science and earth science', 'Science', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (11, 'SS7', 'Social Studies Grade 7', 'American history', 'Social Studies', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (12, 'SPAN7', 'Spanish Grade 7', 'Intermediate Spanish language', 'Spanish', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (13, 'ART7', 'Art Grade 7', 'Advanced art techniques', 'Art', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (14, 'PE7', 'Physical Education Grade 7', 'Team sports and fitness', 'Physical Education', 'Grade 7', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (15, 'ENG8', 'English Grade 8', 'Advanced literature and composition', 'English', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (16, 'MATH8', 'Mathematics Grade 8', 'Algebra fundamentals', 'Mathematics', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (17, 'SCI8', 'Science Grade 8', 'Physical science basics', 'Science', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (18, 'SS8', 'Social Studies Grade 8', 'Civics and government', 'Social Studies', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (19, 'SPAN8', 'Spanish Grade 8', 'Advanced Spanish language', 'Spanish', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (20, 'ART8', 'Art Grade 8', 'Digital art and design', 'Art', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (21, 'PE8', 'Physical Education Grade 8', 'Advanced fitness training', 'Physical Education', 'Grade 8', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (22, 'ENG9', 'English Grade 9', 'World literature and essay writing', 'English', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (23, 'ALG1', 'Algebra I', 'Linear equations and graphing', 'Mathematics', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (24, 'BIO9', 'Biology', 'Introduction to life sciences', 'Science', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (25, 'WH9', 'World History', 'Ancient to modern civilizations', 'Social Studies', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (26, 'SPAN9', 'Spanish I', 'Beginning Spanish language', 'Spanish', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (27, 'ART9', 'Art Grade 9', 'Studio art and art history', 'Art', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (28, 'PE9', 'Physical Education Grade 9', 'Health and wellness', 'Physical Education', 'Grade 9', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (29, 'ENG10', 'English Grade 10', 'American literature', 'English', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (30, 'GEO10', 'Geometry', 'Shapes, proofs, and spatial reasoning', 'Mathematics', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (31, 'CHEM10', 'Chemistry', 'Chemical reactions and atomic structure', 'Science', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (32, 'AH10', 'American History', 'Colonial period to present', 'Social Studies', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (33, 'SPAN10', 'Spanish II', 'Intermediate Spanish language', 'Spanish', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (34, 'ART10', 'Art Grade 10', 'Advanced studio techniques', 'Art', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (35, 'PE10', 'Physical Education Grade 10', 'Lifetime fitness activities', 'Physical Education', 'Grade 10', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (36, 'ENG11', 'English Grade 11', 'British literature and rhetoric', 'English', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (37, 'ALG2', 'Algebra II', 'Advanced algebraic concepts', 'Mathematics', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (38, 'PHYS11', 'Physics', 'Mechanics and energy', 'Science', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (39, 'GOV11', 'Government', 'American government and politics', 'Social Studies', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (40, 'SPAN11', 'Spanish III', 'Advanced Spanish language', 'Spanish', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (41, 'ART11', 'Art Grade 11', 'Portfolio development', 'Art', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (42, 'PE11', 'Physical Education Grade 11', 'Sports psychology and training', 'Physical Education', 'Grade 11', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (43, 'ENG12', 'English Grade 12', 'Contemporary literature and college prep', 'English', 'Grade 12', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (44, 'CALC12', 'Calculus', 'Differential and integral calculus', 'Mathematics', 'Grade 12', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (45, 'APCHEM', 'AP Chemistry', 'Advanced chemistry concepts', 'Science', 'Grade 12', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (46, 'ECON12', 'Economics', 'Macro and microeconomics', 'Social Studies', 'Grade 12', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (47, 'SPAN12', 'Spanish IV', 'Advanced Spanish language and literature', 'Spanish', 'Grade 12', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (48, 'ART12', 'Art Grade 12', 'Advanced portfolio and exhibitions', 'Art', 'Grade 12', '2025-09-18 16:54:02.268215');
INSERT INTO public.courses (id, course_code, course_name, description, subject, grade_level, created_at) VALUES (49, 'PE12', 'Physical Education Grade 12', 'Independent fitness planning', 'Physical Education', 'Grade 12', '2025-09-18 16:54:02.268215');
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (1, 'System Administrator', 'admin@school.edu', 'admin', 'admin123', 'admin', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (2, 'Sarah Johnson', 'sarah.johnson@school.edu', 'sjohnson', 'teacher123', 'teacher', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (3, 'Emily Rodriguez', 'emily.rodriguez@school.edu', 'erodriguez', 'teacher123', 'teacher', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (4, 'Jennifer Brown', 'jennifer.brown@school.edu', 'jbrown', 'teacher123', 'teacher', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (6, 'Maria Garcia', 'maria.garcia@school.edu', 'mgarcia', 'teacher123', 'teacher', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (7, 'Amanda White', 'amanda.white@school.edu', 'awhite', 'teacher123', 'teacher', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (8, 'Patricia Thomas', 'patricia.thomas@school.edu', 'pthomas', 'teacher123', 'teacher', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (9, 'Emma Wilson', 'emma.wilson.6a@student.edu', 'ewilson6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (10, 'Liam Johnson', 'liam.johnson.6a@student.edu', 'ljohnson6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (11, 'Olivia Brown', 'olivia.brown.6a@student.edu', 'obrown6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (12, 'Noah Davis', 'noah.davis.6a@student.edu', 'ndavis6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (13, 'Sophia Miller', 'sophia.miller.6a@student.edu', 'smiller6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (14, 'Ethan Garcia', 'ethan.garcia.6a@student.edu', 'egarcia6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (15, 'Isabella Rodriguez', 'isabella.rodriguez.6a@student.edu', 'irodriguez6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (16, 'Mason Martinez', 'mason.martinez.6a@student.edu', 'mmartinez6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (17, 'Ava Anderson', 'ava.anderson.6a@student.edu', 'aanderson6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (18, 'Lucas Taylor', 'lucas.taylor.6a@student.edu', 'ltaylor6a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (19, 'Maya James', 'maya.james.7a@student.edu', 'mjames7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (20, 'Cameron Watson', 'cameron.watson.7a@student.edu', 'cwatson7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (21, 'Aria Brooks', 'aria.brooks.7a@student.edu', 'abrooks7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (22, 'Nolan Kelly', 'nolan.kelly.7a@student.edu', 'nkelly7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (23, 'Skylar Sanders', 'skylar.sanders.7a@student.edu', 'ssanders7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (24, 'Eli Price', 'eli.price.7a@student.edu', 'eprice7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (25, 'Genesis Bennett', 'genesis.bennett.7a@student.edu', 'gbennett7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (26, 'Xavier Wood', 'xavier.wood.7a@student.edu', 'xwood7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (27, 'Naomi Barnes', 'naomi.barnes.7a@student.edu', 'nbarnes7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (28, 'Jose Ross', 'jose.ross.7a@student.edu', 'jross7a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (29, 'Elena Martinez', 'elena.martinez.8a@student.edu', 'emartinez8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (30, 'Dylan Cooper', 'dylan.cooper.8a@student.edu', 'dcooper8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (31, 'Zoe Richardson', 'zoe.richardson.8a@student.edu', 'zrichardson8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (32, 'Adrian Reed', 'adrian.reed.8a@student.edu', 'areed8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (33, 'Paisley Cox', 'paisley.cox.8a@student.edu', 'pcox8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (34, 'Blake Ward', 'blake.ward.8a@student.edu', 'bward8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (35, 'Melody Torres', 'melody.torres.8a@student.edu', 'mtorres8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (36, 'Knox Peterson', 'knox.peterson.8a@student.edu', 'kpeterson8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (37, 'Piper Gray', 'piper.gray.8a@student.edu', 'pgray8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (38, 'River Ramirez', 'river.ramirez.8a@student.edu', 'rramirez8a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (39, 'Scarlett Coleman', 'scarlett.coleman.9a@student.edu', 'scoleman9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (40, 'Maverick Jenkins', 'maverick.jenkins.9a@student.edu', 'mjenkins9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (41, 'Hazel Perry', 'hazel.perry.9a@student.edu', 'hperry9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (42, 'Knox Powell', 'knox.powell.9a@student.edu', 'kpowell9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (43, 'Ivy Long', 'ivy.long.9a@student.edu', 'ilong9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (44, 'Ryder Patterson', 'ryder.patterson.9a@student.edu', 'rpatterson9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (45, 'Sage Hughes', 'sage.hughes.9a@student.edu', 'shughes9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (46, 'Cruz Flores', 'cruz.flores.9a@student.edu', 'cflores9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (47, 'Willow Washington', 'willow.washington.9a@student.edu', 'wwashington9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (48, 'Phoenix Butler', 'phoenix.butler.9a@student.edu', 'pbutler9a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (49, 'Ember Ford', 'ember.ford.10a@student.edu', 'eford10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (50, 'Orion Hamilton', 'orion.hamilton.10a@student.edu', 'ohamilton10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (51, 'Sage Graham', 'sage.graham.10a@student.edu', 'sgraham10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (52, 'Atlas Sullivan', 'atlas.sullivan.10a@student.edu', 'asullivan10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (53, 'Luna Wallace', 'luna.wallace.10a@student.edu', 'lwallace10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (54, 'River Woods', 'river.woods.10a@student.edu', 'rwoods10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (55, 'Wren Cole', 'wren.cole.10a@student.edu', 'wcole10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (56, 'Knox West', 'knox.west.10a@student.edu', 'kwest10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (57, 'Nova Jordan', 'nova.jordan.10a@student.edu', 'njordan10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (58, 'Phoenix Owens', 'phoenix.owens.10a@student.edu', 'powens10a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (59, 'Ember Stevens', 'ember.stevens.11a@student.edu', 'estevens11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (60, 'Orion Tucker', 'orion.tucker.11a@student.edu', 'otucker11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (61, 'Sage Porter', 'sage.porter.11a@student.edu', 'sporter11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (62, 'Atlas Hunter', 'atlas.hunter.11a@student.edu', 'ahunter11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (63, 'Luna Hicks', 'luna.hicks.11a@student.edu', 'lhicks11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (64, 'River Crawford', 'river.crawford.11a@student.edu', 'rcrawford11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (65, 'Wren Henry', 'wren.henry.11a@student.edu', 'whenry11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (66, 'Knox Boyd', 'knox.boyd.11a@student.edu', 'kboyd11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (67, 'Nova Mason', 'nova.mason.11a@student.edu', 'nmason11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (68, 'Phoenix Curtis', 'phoenix.curtis.11a@student.edu', 'pcurtis11a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (69, 'Victoria Myers', 'victoria.myers.12a@student.edu', 'vmyers12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (70, 'Ryan Ford', 'ryan.ford.12a@student.edu', 'rford12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (71, 'Madison Hamilton', 'madison.hamilton.12a@student.edu', 'mhamilton12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (72, 'Tyler Graham', 'tyler.graham.12a@student.edu', 'tgraham12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (73, 'Kayla Sullivan', 'kayla.sullivan.12a@student.edu', 'ksullivan12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (74, 'Brandon Wallace', 'brandon.wallace.12a@student.edu', 'bwallace12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (75, 'Destiny Woods', 'destiny.woods.12a@student.edu', 'dwoods12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (76, 'Jordan Cole', 'jordan.cole.12a@student.edu', 'jcole12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (77, 'Jasmine West', 'jasmine.west.12a@student.edu', 'jwest12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (78, 'Trevor Jordan', 'trevor.jordan.12a@student.edu', 'tjordan12a', 'student123', 'student', '2025-09-18 16:54:02.268215');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (86, 'ram', 'ram@ct.com', 'ram', 'ram123', 'student', '2025-09-30 12:59:14.425758');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (83, 'Student', 'laxman@ct.com', 'laxman', 'laxman123', 'student', '2025-09-30 11:59:39.428152');
INSERT INTO public.users (id, name, email, username, password, role, created_at) VALUES (79, 'LORD', 'lord@ct.com', 'lord', 'lord123', 'teacher', '2025-09-22 08:39:20.012096');
--
-- Data for Name: teachers; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (1, 2, 'T001', '555-0101', 'English', '2025-09-18 16:54:02.268215', '{English}');
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (2, 3, 'T002', '555-0102', 'Mathematics', '2025-09-18 16:54:02.268215', '{Mathematics}');
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (3, 4, 'T003', '555-0103', 'Science', '2025-09-18 16:54:02.268215', '{Science}');
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (5, 6, 'T005', '555-0105', 'Spanish', '2025-09-18 16:54:02.268215', '{Spanish}');
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (6, 7, 'T006', '555-0106', 'Art', '2025-09-18 16:54:02.268215', '{Art}');
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (7, 8, 'T007', '555-0107', 'Physical Education', '2025-09-18 16:54:02.268215', '{"Physical Education"}');
INSERT INTO public.teachers (id, user_id, employee_id, phone, subject, created_at, subjects) VALUES (8, 79, 'TCH008', '1234232232', 'English', '2025-09-22 08:39:20.018515', '{English,Art,Mathematics,Science,"Physical Education","Social Studies",Spanish}');
--
-- Data for Name: time_slots; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (1, 'Period 1', '08:00:00', '08:50:00', 1, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (2, 'Period 2', '09:00:00', '09:50:00', 2, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (3, 'Period 3', '10:00:00', '10:50:00', 3, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (5, 'Period 4', '11:10:00', '12:00:00', 5, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (6, 'Period 5', '12:10:00', '13:00:00', 6, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (8, 'Period 6', '14:00:00', '14:50:00', 8, true, '2025-09-18 16:54:02.268215');
INSERT INTO public.time_slots (id, slot_name, start_time, end_time, slot_order, is_active, created_at) VALUES (9, 'Period 7', '15:00:00', '15:50:00', 9, true, '2025-09-18 16:54:02.268215');
--
-- Data for Name: daily_schedules; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5184, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.112954', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5186, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.118287', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5189, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.125268', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5190, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.125689', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5195, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.135479', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5196, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.135807', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5197, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.146418', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5199, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.146817', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5185, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.113362', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5200, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.146942', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5201, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.147083', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5202, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.150937', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5204, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.155092', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5206, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.155408', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5192, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.133672', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5188, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.124687', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5207, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.155557', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5208, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.158533', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5209, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.161725', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5210, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.161875', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5211, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.162014', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5213, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.162835', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5214, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.166107', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5215, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.170455', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5216, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.170598', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5217, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.170772', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5218, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.170929', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5219, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.171123', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5220, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.17428', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5221, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.177835', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5222, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.177992', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5223, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.178139', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5224, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.178365', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5225, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.178565', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5226, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.182723', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5227, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.186131', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5228, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.186337', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5229, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.186659', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5230, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.187046', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5231, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.187275', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5232, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.190038', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5233, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.193524', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5234, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.193682', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5235, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.19411', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5236, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.194567', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5237, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.194792', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5238, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.198757', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5239, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.203437', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5240, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.203603', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5241, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.203785', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5242, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.203962', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5243, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.204366', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5244, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.208755', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5245, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.21338', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5246, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.213556', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5247, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.213721', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5248, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.213903', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5249, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.21414', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5250, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.2179', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5251, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.221768', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5252, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.221968', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5253, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.222158', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5212, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.162644', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5254, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.222325', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5255, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.222481', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5256, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.225432', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5257, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.22927', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5258, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.229453', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5259, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.229624', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5260, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.229791', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5261, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.230538', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5262, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.232436', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5263, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.236215', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5264, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.236356', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5265, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.236507', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5266, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.23781', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5267, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.237951', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5268, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.239354', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5269, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.243604', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5270, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.243749', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5271, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.244393', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5175, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:32:36.509818', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5177, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:32:36.518666', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5179, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:32:36.52339', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5178, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:32:36.519588', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5181, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:32:36.600979', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5176, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:32:36.515932', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5191, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.126929', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5194, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.134871', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5272, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.244558', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5275, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.249845', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5286, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.258697', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5289, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.262819', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5296, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.268834', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5273, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.244687', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5276, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.249998', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5285, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.257447', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5287, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.262151', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5298, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.269823', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5300, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.27379', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5274, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.245695', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5279, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.250971', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5283, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.25664', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5291, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.263075', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5293, 10, 9, 45, 8, 11, 1, true, '2025-10-03 23:33:13.268042', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5278, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.250277', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5282, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.256518', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5290, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.26294', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5294, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.268171', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5277, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.250142', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5281, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.256367', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5292, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.264344', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5295, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.268719', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5284, 10, 6, 45, 8, 11, 1, true, '2025-10-03 23:33:13.257324', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5288, 10, 2, 36, 8, 11, 1, true, '2025-10-03 23:33:13.262262', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5297, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.268948', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5299, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.273677', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5427, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:36:31.568458', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5187, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.119161', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5457, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.299876', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5182, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.095739', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5460, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.309713', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5461, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.314172', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5462, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.314897', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5463, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.318129', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5464, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.32302', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5465, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.3289', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5466, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.330402', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5468, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.335586', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5183, 10, 5, 40, 8, 11, 1, true, '2025-10-03 23:33:13.111851', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5470, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.33993', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5471, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.341692', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5472, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.344165', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5473, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.345201', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5474, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.345473', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5475, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.349282', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5477, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.352911', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5478, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.353202', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5479, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.359662', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5480, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.359945', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5481, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.36292', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5482, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.365461', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5483, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.365723', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5484, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.366714', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5485, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.371739', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5486, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.372833', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5487, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.374659', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5488, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.376881', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5489, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.378073', '2025-08-18', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5193, 10, 8, 44, 8, 11, 1, true, '2025-10-03 23:33:13.134663', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5497, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.397303', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5498, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.398679', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5499, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.400649', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5500, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.4018', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5501, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.402787', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5502, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.403218', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5503, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.409687', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5504, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.410249', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5505, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.412167', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5506, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.41498', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5507, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.415256', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5508, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.416257', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5509, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.421187', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5510, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.421428', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5511, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.423474', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5512, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.426414', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5513, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.426661', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5514, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.428359', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5515, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.43184', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5516, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.432917', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5517, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.434748', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5519, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.437557', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5518, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.437288', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5520, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.441005', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5521, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.442823', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5522, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.443424', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5523, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.446105', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5524, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.448667', '2025-08-25', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5532, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.46044', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5205, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.155268', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5280, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.252349', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5430, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:36:31.587073', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5431, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:36:31.588156', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5432, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:36:31.589154', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5433, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:36:31.590065', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5434, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:36:31.591235', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5435, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:36:31.591946', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5436, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:36:31.592725', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5437, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:36:31.593697', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5438, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:36:31.594428', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5439, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:36:31.595193', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5440, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:36:31.595918', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5441, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:36:31.597024', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5442, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:36:31.597715', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5443, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:36:31.598396', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5444, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:36:31.599059', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5446, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:36:31.600762', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5447, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:36:31.601711', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5448, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:36:31.602905', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5449, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:36:31.603591', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5450, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:36:31.604265', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5451, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:36:31.605119', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5452, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:36:31.605814', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5453, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:36:31.606698', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5454, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:36:31.607547', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5198, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:33:13.146685', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5538, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.470207', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5540, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.475741', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5545, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.484411', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5549, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.491236', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5553, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.498294', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5558, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.507143', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5567, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.525513', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5571, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.534669', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5576, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.543401', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5581, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.550781', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5585, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.558762', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5589, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.566127', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5594, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.573361', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5604, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.589094', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5608, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.597473', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5615, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.60815', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5619, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.616311', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5624, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.625195', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5629, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.632948', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5638, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.648111', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5645, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.658005', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5649, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.666162', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5654, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.673095', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5659, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.680999', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5664, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.688038', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5675, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.703756', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5679, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.710327', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5684, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.718349', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5689, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.725231', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5694, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.732113', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5698, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.739148', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5709, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.753726', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5714, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.76004', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5719, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.766485', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5724, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.77419', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5728, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.783174', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5744, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.805093', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5749, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.811687', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5754, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.81849', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5758, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.826336', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5765, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.834783', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5769, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.841855', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5779, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.854522', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5784, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.860037', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5787, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.867336', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5796, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.875373', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5799, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.882191', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5820, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.909128', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5821, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.914431', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5831, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.922726', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5834, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.92921', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5855, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.952882', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5858, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.960007', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5867, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.967316', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5870, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.973726', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5882, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.98775', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5891, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.996015', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5894, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:27.001849', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5903, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:27.009175', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5906, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:27.0159', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5918, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:27.029447', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5927, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:27.037701', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5930, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:27.045334', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5939, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:27.054602', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5942, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:27.061801', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5954, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:27.076252', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5963, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:27.084284', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5966, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:27.091773', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5975, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:27.099697', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5978, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:27.106172', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5987, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:27.113357', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5990, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:27.120465', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5999, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:27.128593', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6002, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:27.134982', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6011, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:27.142778', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6014, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:27.149462', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6023, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:27.156867', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6026, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:27.163306', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6035, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:27.171848', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6038, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:27.178022', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6047, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:27.186525', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5429, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:36:31.586027', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5533, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.466028', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5780, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.855239', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5785, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.862886', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5792, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.871483', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5797, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.878564', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5804, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.886995', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5816, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.904964', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5826, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.915642', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5827, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.921937', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5838, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.930664', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5839, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.93737', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5850, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.946035', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5851, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.952078', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5862, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.960726', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5863, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.966577', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5874, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.97449', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5886, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.988532', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5887, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.995266', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5898, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:27.002513', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5899, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:27.008218', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5922, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:27.030124', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5923, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:27.036789', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5934, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:27.046318', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5935, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:27.053133', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5958, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:27.077006', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5959, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:27.083432', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5970, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:27.092806', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5971, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:27.098967', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5994, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:27.121219', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5995, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:27.127832', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6006, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:27.13572', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6007, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:27.142069', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6030, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:27.164451', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6031, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:27.171122', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6042, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:27.179599', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6043, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:27.185826', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5534, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.467156', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5544, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.480986', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5547, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.488519', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5552, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.495557', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5556, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.502717', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5203, 10, 1, 34, 8, 11, 1, true, '2025-10-03 23:33:13.154924', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5568, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.526766', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5572, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.536525', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5580, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.549093', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5584, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.557754', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5591, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.567968', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5605, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.591248', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5610, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.599633', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5614, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.607893', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5621, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.618548', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5625, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.627574', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5640, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.650038', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5644, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.657782', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5651, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.668081', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5655, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.675373', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5660, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.682654', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5674, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.70357', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5681, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.712649', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5685, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.72026', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5690, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.726649', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5695, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.733931', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5711, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.755229', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5715, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.761854', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5720, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.767787', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5725, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.776239', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5730, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.784938', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5734, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.791932', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5745, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.807119', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5750, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.813016', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5755, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.821156', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5760, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.828072', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5764, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.83457', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5783, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.859179', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5788, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.867524', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5795, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.875091', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5800, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.882408', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5813, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.901176', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5818, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.908514', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5823, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.914861', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5829, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.92233', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5836, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.930228', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5848, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.945609', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5853, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.952474', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5860, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.960393', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5865, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.966933', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5872, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.97411', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5884, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.988146', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5889, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.995659', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5896, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:27.002178', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5901, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:27.008679', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5908, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:27.016271', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5920, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:27.029792', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5925, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:27.037218', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5932, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:27.045784', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5937, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:27.053543', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5944, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:27.062127', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5956, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:27.076647', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5962, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:27.08405', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5967, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:27.091977', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5974, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:27.099518', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5979, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:27.106352', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5991, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:27.120664', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5998, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:27.128406', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6003, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:27.13517', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6010, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:27.142597', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6022, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:27.156648', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6027, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:27.163653', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6034, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:27.171656', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6039, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:27.178185', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6046, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:27.186354', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5535, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.468185', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5543, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.480623', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5548, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.490145', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5557, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.504345', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5570, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.531926', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5575, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.540857', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5579, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.548141', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5583, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.555834', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5588, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.563776', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5593, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.571739', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5602, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.587241', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5609, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.597755', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5613, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.606117', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5618, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.613718', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5623, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.623347', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5628, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.630807', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5639, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.648287', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5643, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.656108', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5648, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.664124', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5653, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.671421', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5658, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.67894', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5662, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.686079', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5673, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.702267', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5678, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.708121', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5683, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.716792', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5688, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.7234', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5692, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.730427', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5699, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.739356', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5708, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.752103', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5713, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.75864', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5718, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.764679', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5722, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.771832', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5729, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.783366', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5733, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.790456', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5743, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.803603', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5748, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.80999', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5752, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.816381', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5759, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.826542', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5763, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.833185', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5768, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.839784', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5778, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.852383', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5781, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.858804', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5790, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.868007', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5793, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.874581', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5802, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.883014', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5814, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.9014', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5817, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.908276', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5824, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.915064', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5830, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.922519', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5835, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.930071', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5847, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.945298', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5854, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.952661', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5859, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.960187', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5866, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.967108', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5871, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.973919', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5883, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.987938', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5890, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.995824', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5895, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:27.002018', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5902, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:27.008857', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5907, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:27.016086', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5919, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:27.029624', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5926, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:27.037458', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5931, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:27.045561', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5938, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:27.054355', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5943, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:27.061953', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5955, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:27.076444', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5961, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:27.083848', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5968, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:27.092264', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5973, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:27.099343', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5993, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:27.121038', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5996, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:27.128021', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6005, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:27.135531', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6008, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:27.142255', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6029, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:27.164252', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6032, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:27.171342', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6041, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:27.179491', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6044, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:27.186038', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5536, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.46841', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5541, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.478559', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5546, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.485925', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5550, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.493537', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5555, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.500691', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5559, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:26.510086', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5569, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.528865', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5573, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.537807', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5577, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.545698', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5582, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.553202', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5587, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.561914', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5592, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.569516', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5603, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:26.587511', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5607, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.595654', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5612, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.603402', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5617, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.612132', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5622, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.621156', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5626, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.629063', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5637, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.64661', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5642, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.653827', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5647, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.662499', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5652, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.669618', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5656, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.677085', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5663, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.686352', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5672, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.700389', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5677, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.706804', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5682, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.714409', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5686, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.721574', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5693, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.730654', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5697, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.737882', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5707, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.750672', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5712, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.756712', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5716, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.763087', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5723, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.772081', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5727, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.781773', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5732, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.788496', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5742, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.801713', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5746, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.808429', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5753, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.816626', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5757, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.824988', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5762, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.831338', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5767, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.838271', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5786, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.863966', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5791, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.871285', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5798, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.878778', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5803, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.886759', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5815, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.904768', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5825, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.915296', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5828, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:26.922128', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5837, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.930346', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5849, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:26.945819', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5852, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.952272', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5861, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.960546', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5864, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.966762', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5873, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:26.974304', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5885, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.988342', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5888, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:26.995515', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5897, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:27.002347', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5900, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:27.008525', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5909, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:27.016452', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5921, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:27.029934', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5924, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:27.037029', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5933, 10, 3, 44, 8, 11, 4, true, '2025-10-03 23:37:27.045973', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5936, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:27.053368', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5957, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:27.07682', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5960, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:27.083647', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5969, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:27.09256', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5972, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:27.099154', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5992, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:27.120851', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5997, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:27.128223', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6004, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:27.135356', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6009, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:27.142434', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6028, 10, 9, 45, 8, 11, 2, true, '2025-10-03 23:37:27.163871', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6033, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:27.171508', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6040, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:27.179329', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6045, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:27.186208', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5180, 10, 3, 44, 8, 11, 1, true, '2025-10-03 23:32:36.526712', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5428, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:36:31.584707', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5445, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:36:31.599881', '2025-10-06', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5537, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.469315', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5539, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.474028', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5542, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.480362', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5551, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.493877', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5554, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.500429', '2025-09-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5574, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.538725', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5578, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:26.547226', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5586, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.55964', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5590, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:26.567711', '2025-09-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5606, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.59313', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5611, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.601777', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5616, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.609973', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5620, 10, 6, 45, 8, 11, 4, true, '2025-10-03 23:37:26.61829', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5627, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:26.629287', '2025-09-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5641, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.652204', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5646, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.659665', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5650, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:26.667778', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5657, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.677377', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5661, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.684706', '2025-09-22', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5676, 10, 6, 45, 8, 11, 2, true, '2025-10-03 23:37:26.705076', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5680, 10, 2, 36, 8, 11, 3, true, '2025-10-03 23:37:26.712283', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5687, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:26.721778', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5691, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.728849', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5696, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.735282', '2025-09-29', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5710, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:26.755065', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5717, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.763279', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5721, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.769635', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5726, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.778033', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5731, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.786949', '2025-10-13', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5747, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.808639', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5751, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.814897', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5756, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:26.823112', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5761, 10, 8, 44, 8, 11, 4, true, '2025-10-03 23:37:26.82993', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5766, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.836273', '2025-10-20', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5777, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.851505', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5782, 10, 8, 44, 8, 11, 2, true, '2025-10-03 23:37:26.859005', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5789, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:26.86771', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5794, 10, 5, 40, 8, 11, 4, true, '2025-10-03 23:37:26.874782', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5801, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:26.882625', '2025-10-27', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5812, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:26.900943', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5819, 10, 1, 34, 8, 11, 3, true, '2025-10-03 23:37:26.908855', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5822, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.914622', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5832, 10, 9, 45, 8, 11, 4, true, '2025-10-03 23:37:26.922911', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5833, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.928971', '2025-11-03', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5856, 10, 3, 44, 8, 11, 3, true, '2025-10-03 23:37:26.953104', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5857, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.959821', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5868, 10, 1, 34, 8, 11, 5, true, '2025-10-03 23:37:26.967508', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5869, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:26.973506', '2025-11-10', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5892, 10, 5, 40, 8, 11, 3, true, '2025-10-03 23:37:26.996217', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5893, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:27.001716', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5904, 10, 2, 36, 8, 11, 5, true, '2025-10-03 23:37:27.00937', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5905, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:27.015761', '2025-11-17', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5917, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:27.029236', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5928, 10, 6, 45, 8, 11, 3, true, '2025-10-03 23:37:27.037907', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5929, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:27.045099', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5940, 10, 3, 44, 8, 11, 5, true, '2025-10-03 23:37:27.054766', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5941, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:27.061572', '2025-11-24', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5952, 10, 1, 34, 8, 11, 2, true, '2025-10-03 23:37:27.069778', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5953, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:27.076035', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5964, 10, 8, 44, 8, 11, 3, true, '2025-10-03 23:37:27.084682', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5965, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:27.091462', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5976, 10, 5, 40, 8, 11, 5, true, '2025-10-03 23:37:27.099885', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5977, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:27.105965', '2025-12-01', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5988, 10, 2, 36, 8, 11, 2, true, '2025-10-03 23:37:27.113539', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (5989, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:27.120167', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6000, 10, 9, 45, 8, 11, 3, true, '2025-10-03 23:37:27.128792', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6001, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:27.134777', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6012, 10, 6, 45, 8, 11, 5, true, '2025-10-03 23:37:27.142963', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6013, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:27.149291', '2025-12-08', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6024, 10, 3, 44, 8, 11, 2, true, '2025-10-03 23:37:27.15705', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6025, 10, 5, 40, 8, 11, 2, true, '2025-10-03 23:37:27.163072', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6036, 10, 1, 34, 8, 11, 4, true, '2025-10-03 23:37:27.172005', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6037, 10, 2, 36, 8, 11, 4, true, '2025-10-03 23:37:27.177821', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6048, 10, 8, 44, 8, 11, 5, true, '2025-10-03 23:37:27.186699', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6049, 10, 9, 45, 8, 11, 5, true, '2025-10-03 23:37:27.192416', '2025-12-15', 'Fall 2025');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6155, 10, 1, 34, 8, 11, 1, true, '2025-10-05 22:03:20.993927', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6156, 10, 2, 29, 8, 11, 1, true, '2025-10-05 22:03:20.994542', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6157, 10, 3, 29, 8, 11, 1, true, '2025-10-05 22:03:20.995117', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6158, 10, 5, 44, 8, 11, 1, true, '2025-10-05 22:03:20.995735', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6159, 10, 9, 42, 8, 11, 1, true, '2025-10-05 22:03:20.996828', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6160, 10, 6, 44, 8, 11, 1, true, '2025-10-05 22:03:20.997957', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6161, 10, 8, 44, 8, 11, 1, true, '2025-10-05 22:03:20.998966', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6162, 10, 1, 34, 8, 11, 2, true, '2025-10-05 22:03:20.999714', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6163, 10, 2, 29, 8, 11, 2, true, '2025-10-05 22:03:21.000308', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6164, 10, 3, 29, 8, 11, 2, true, '2025-10-05 22:03:21.000801', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6165, 10, 5, 44, 8, 11, 2, true, '2025-10-05 22:03:21.001355', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6166, 10, 9, 42, 8, 11, 2, true, '2025-10-05 22:03:21.00185', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6167, 10, 6, 44, 8, 11, 2, true, '2025-10-05 22:03:21.002356', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6168, 10, 8, 44, 8, 11, 2, true, '2025-10-05 22:03:21.003232', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6169, 10, 1, 34, 8, 11, 3, true, '2025-10-05 22:03:21.004187', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6170, 10, 2, 29, 8, 11, 3, true, '2025-10-05 22:03:21.004882', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6171, 10, 3, 29, 8, 11, 3, true, '2025-10-05 22:03:21.00557', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6172, 10, 5, 44, 8, 11, 3, true, '2025-10-05 22:03:21.006277', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6173, 10, 9, 42, 8, 11, 3, true, '2025-10-05 22:03:21.006948', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6174, 10, 6, 44, 8, 11, 3, true, '2025-10-05 22:03:21.007587', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6175, 10, 8, 44, 8, 11, 3, true, '2025-10-05 22:03:21.008351', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6176, 10, 1, 34, 8, 11, 4, true, '2025-10-05 22:03:21.009018', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6177, 10, 2, 29, 8, 11, 4, true, '2025-10-05 22:03:21.009763', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6178, 10, 3, 29, 8, 11, 4, true, '2025-10-05 22:03:21.010904', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6179, 10, 5, 44, 8, 11, 4, true, '2025-10-05 22:03:21.012001', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6180, 10, 9, 42, 8, 11, 4, true, '2025-10-05 22:03:21.012885', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6181, 10, 6, 44, 8, 11, 4, true, '2025-10-05 22:03:21.013718', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6182, 10, 8, 44, 8, 11, 4, true, '2025-10-05 22:03:21.014389', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6183, 10, 1, 34, 8, 11, 5, true, '2025-10-05 22:03:21.015081', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6184, 10, 2, 29, 8, 11, 5, true, '2025-10-05 22:03:21.015924', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6185, 10, 3, 29, 8, 11, 5, true, '2025-10-05 22:03:21.016835', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6186, 10, 5, 44, 8, 11, 5, true, '2025-10-05 22:03:21.018039', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6187, 10, 9, 42, 8, 11, 5, true, '2025-10-05 22:03:21.0188', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6188, 10, 6, 44, 8, 11, 5, true, '2025-10-05 22:03:21.019475', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6189, 10, 8, 44, 8, 11, 5, true, '2025-10-05 22:03:21.020127', '2026-01-19', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6190, 10, 1, 34, 8, 11, 1, true, '2025-10-05 22:03:21.021223', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6191, 10, 2, 29, 8, 11, 1, true, '2025-10-05 22:03:21.021759', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6192, 10, 3, 29, 8, 11, 1, true, '2025-10-05 22:03:21.022283', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6193, 10, 5, 44, 8, 11, 1, true, '2025-10-05 22:03:21.022803', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6194, 10, 9, 42, 8, 11, 1, true, '2025-10-05 22:03:21.023288', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6195, 10, 6, 44, 8, 11, 1, true, '2025-10-05 22:03:21.024304', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6196, 10, 8, 44, 8, 11, 1, true, '2025-10-05 22:03:21.025357', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6197, 10, 1, 34, 8, 11, 2, true, '2025-10-05 22:03:21.02625', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6198, 10, 2, 29, 8, 11, 2, true, '2025-10-05 22:03:21.026909', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6199, 10, 3, 29, 8, 11, 2, true, '2025-10-05 22:03:21.027725', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6200, 10, 5, 44, 8, 11, 2, true, '2025-10-05 22:03:21.028418', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6201, 10, 9, 42, 8, 11, 2, true, '2025-10-05 22:03:21.029007', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6202, 10, 6, 44, 8, 11, 2, true, '2025-10-05 22:03:21.029502', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6203, 10, 8, 44, 8, 11, 2, true, '2025-10-05 22:03:21.030003', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6204, 10, 1, 34, 8, 11, 3, true, '2025-10-05 22:03:21.030724', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6205, 10, 2, 29, 8, 11, 3, true, '2025-10-05 22:03:21.032087', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6206, 10, 3, 29, 8, 11, 3, true, '2025-10-05 22:03:21.032856', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6207, 10, 5, 44, 8, 11, 3, true, '2025-10-05 22:03:21.03339', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6208, 10, 9, 42, 8, 11, 3, true, '2025-10-05 22:03:21.034003', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6209, 10, 6, 44, 8, 11, 3, true, '2025-10-05 22:03:21.034646', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6210, 10, 8, 44, 8, 11, 3, true, '2025-10-05 22:03:21.035242', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6211, 10, 1, 34, 8, 11, 4, true, '2025-10-05 22:03:21.035655', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6212, 10, 2, 29, 8, 11, 4, true, '2025-10-05 22:03:21.036048', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6213, 10, 3, 29, 8, 11, 4, true, '2025-10-05 22:03:21.036465', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6214, 10, 5, 44, 8, 11, 4, true, '2025-10-05 22:03:21.036858', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6215, 10, 9, 42, 8, 11, 4, true, '2025-10-05 22:03:21.037497', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6216, 10, 6, 44, 8, 11, 4, true, '2025-10-05 22:03:21.038528', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6217, 10, 8, 44, 8, 11, 4, true, '2025-10-05 22:03:21.039213', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6218, 10, 1, 34, 8, 11, 5, true, '2025-10-05 22:03:21.040071', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6219, 10, 2, 29, 8, 11, 5, true, '2025-10-05 22:03:21.040856', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6220, 10, 3, 29, 8, 11, 5, true, '2025-10-05 22:03:21.041531', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6221, 10, 5, 44, 8, 11, 5, true, '2025-10-05 22:03:21.042097', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6222, 10, 9, 42, 8, 11, 5, true, '2025-10-05 22:03:21.042664', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6223, 10, 6, 44, 8, 11, 5, true, '2025-10-05 22:03:21.043117', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6224, 10, 8, 44, 8, 11, 5, true, '2025-10-05 22:03:21.043752', '2026-01-26', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6225, 10, 1, 34, 8, 11, 1, true, '2025-10-05 22:03:21.044851', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6226, 10, 2, 29, 8, 11, 1, true, '2025-10-05 22:03:21.046365', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6227, 10, 3, 29, 8, 11, 1, true, '2025-10-05 22:03:21.048599', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6228, 10, 5, 44, 8, 11, 1, true, '2025-10-05 22:03:21.049479', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6229, 10, 9, 42, 8, 11, 1, true, '2025-10-05 22:03:21.05018', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6230, 10, 6, 44, 8, 11, 1, true, '2025-10-05 22:03:21.050632', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6231, 10, 8, 44, 8, 11, 1, true, '2025-10-05 22:03:21.051335', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6232, 10, 1, 34, 8, 11, 2, true, '2025-10-05 22:03:21.052575', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6233, 10, 2, 29, 8, 11, 2, true, '2025-10-05 22:03:21.053624', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6234, 10, 3, 29, 8, 11, 2, true, '2025-10-05 22:03:21.054286', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6235, 10, 5, 44, 8, 11, 2, true, '2025-10-05 22:03:21.054832', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6236, 10, 9, 42, 8, 11, 2, true, '2025-10-05 22:03:21.055397', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6237, 10, 6, 44, 8, 11, 2, true, '2025-10-05 22:03:21.055847', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6238, 10, 8, 44, 8, 11, 2, true, '2025-10-05 22:03:21.056236', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6239, 10, 1, 34, 8, 11, 3, true, '2025-10-05 22:03:21.056683', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6240, 10, 2, 29, 8, 11, 3, true, '2025-10-05 22:03:21.057024', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6241, 10, 3, 29, 8, 11, 3, true, '2025-10-05 22:03:21.057386', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6242, 10, 5, 44, 8, 11, 3, true, '2025-10-05 22:03:21.057738', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6243, 10, 9, 42, 8, 11, 3, true, '2025-10-05 22:03:21.058216', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6244, 10, 6, 44, 8, 11, 3, true, '2025-10-05 22:03:21.05897', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6245, 10, 8, 44, 8, 11, 3, true, '2025-10-05 22:03:21.060117', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6246, 10, 1, 34, 8, 11, 4, true, '2025-10-05 22:03:21.060868', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6247, 10, 2, 29, 8, 11, 4, true, '2025-10-05 22:03:21.061552', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6248, 10, 3, 29, 8, 11, 4, true, '2025-10-05 22:03:21.062417', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6249, 10, 5, 44, 8, 11, 4, true, '2025-10-05 22:03:21.064263', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6250, 10, 9, 42, 8, 11, 4, true, '2025-10-05 22:03:21.065', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6251, 10, 6, 44, 8, 11, 4, true, '2025-10-05 22:03:21.065849', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6252, 10, 8, 44, 8, 11, 4, true, '2025-10-05 22:03:21.066994', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6253, 10, 1, 34, 8, 11, 5, true, '2025-10-05 22:03:21.067935', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6254, 10, 2, 29, 8, 11, 5, true, '2025-10-05 22:03:21.068707', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6255, 10, 3, 29, 8, 11, 5, true, '2025-10-05 22:03:21.069484', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6256, 10, 5, 44, 8, 11, 5, true, '2025-10-05 22:03:21.0706', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6257, 10, 9, 42, 8, 11, 5, true, '2025-10-05 22:03:21.071505', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6258, 10, 6, 44, 8, 11, 5, true, '2025-10-05 22:03:21.072221', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6259, 10, 8, 44, 8, 11, 5, true, '2025-10-05 22:03:21.073543', '2026-02-02', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6260, 10, 1, 34, 8, 11, 1, true, '2025-10-05 22:03:21.075051', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6261, 10, 2, 29, 8, 11, 1, true, '2025-10-05 22:03:21.07583', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6262, 10, 3, 29, 8, 11, 1, true, '2025-10-05 22:03:21.076591', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6263, 10, 5, 44, 8, 11, 1, true, '2025-10-05 22:03:21.07741', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6264, 10, 9, 42, 8, 11, 1, true, '2025-10-05 22:03:21.078052', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6265, 10, 6, 44, 8, 11, 1, true, '2025-10-05 22:03:21.078648', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6266, 10, 8, 44, 8, 11, 1, true, '2025-10-05 22:03:21.079738', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6267, 10, 1, 34, 8, 11, 2, true, '2025-10-05 22:03:21.080726', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6268, 10, 2, 29, 8, 11, 2, true, '2025-10-05 22:03:21.081651', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6269, 10, 3, 29, 8, 11, 2, true, '2025-10-05 22:03:21.082612', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6270, 10, 5, 44, 8, 11, 2, true, '2025-10-05 22:03:21.083269', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6271, 10, 9, 42, 8, 11, 2, true, '2025-10-05 22:03:21.083902', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6272, 10, 6, 44, 8, 11, 2, true, '2025-10-05 22:03:21.084506', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6273, 10, 8, 44, 8, 11, 2, true, '2025-10-05 22:03:21.085267', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6274, 10, 1, 34, 8, 11, 3, true, '2025-10-05 22:03:21.085879', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6275, 10, 2, 29, 8, 11, 3, true, '2025-10-05 22:03:21.086654', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6276, 10, 3, 29, 8, 11, 3, true, '2025-10-05 22:03:21.087502', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6277, 10, 5, 44, 8, 11, 3, true, '2025-10-05 22:03:21.088234', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6278, 10, 9, 42, 8, 11, 3, true, '2025-10-05 22:03:21.088948', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6279, 10, 6, 44, 8, 11, 3, true, '2025-10-05 22:03:21.089679', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6280, 10, 8, 44, 8, 11, 3, true, '2025-10-05 22:03:21.090188', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6281, 10, 1, 34, 8, 11, 4, true, '2025-10-05 22:03:21.090888', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6282, 10, 2, 29, 8, 11, 4, true, '2025-10-05 22:03:21.091477', '2026-02-09', 'Spring 2026');
INSERT INTO public.daily_schedules (id, class_section_id, time_slot_id, course_id, teacher_id, room_id, day_of_week, is_active, created_at, week_start_date, semester) VALUES (6283, 10, 3, 29, 8, 11, 4, true, '2025-10-05 22:03:21.092143', '2026-02-09', 'Spring 2026');