-
Notifications
You must be signed in to change notification settings - Fork 6
/
prereq_graph.json
18859 lines (18859 loc) · 348 KB
/
prereq_graph.json
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
{
"ADMN 0001": {
"title": "Summer Disbursement",
"prereqs": []
},
"ADMN 4020": {
"title": "Degree Completion",
"prereqs": []
},
"ARCH 2210": {
"title": "Architecture Design 1",
"prereqs": []
},
"ARCH 2230": {
"title": "Architecture Design 3",
"prereqs": [
"ARCH 2220"
]
},
"ARCH 2240": {
"title": "Architectural Design 4",
"prereqs": []
},
"ARCH 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ARCH 4250": {
"title": "Architecture Design 5",
"prereqs": [
"ARCH 4240"
]
},
"ARCH 4260": {
"title": "Architecture Design 6",
"prereqs": []
},
"ARCH 4270": {
"title": "Arch Design 7",
"prereqs": []
},
"ARCH 4940": {
"title": "Readings In Arch",
"prereqs": []
},
"ARCH 4960": {
"title": "Topics In Arch",
"prereqs": []
},
"ARCH 4980": {
"title": "B.Arch. Final Project 1",
"prereqs": []
},
"ARCH 4990": {
"title": "B.Arch. Final Project 2",
"prereqs": [
"ARCH 4980"
]
},
"ARCH 6940": {
"title": "Adv Ind Proj In Arch/env Desgn",
"prereqs": []
},
"ARCH 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ARTS 1300": {
"title": "Basic Drawing",
"prereqs": []
},
"ARTS 2940": {
"title": "Studies In The Arts",
"prereqs": []
},
"ARTS 4940": {
"title": "Studies In The Arts",
"prereqs": []
},
"ARTS 4960": {
"title": "Topics In The Arts",
"prereqs": []
},
"ARTS 6940": {
"title": "Studies In Electronic Arts",
"prereqs": []
},
"ARTS 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ASTR 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ASTR 4940": {
"title": "Special Projects In Astronomy",
"prereqs": []
},
"ASTR 6940": {
"title": "Readings In Astr",
"prereqs": []
},
"ASTR 9990": {
"title": "Research In Astronomy",
"prereqs": []
},
"BCBP 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"BCBP 4940": {
"title": "Readings In Biochem/biophysics",
"prereqs": []
},
"BCBP 6940": {
"title": "Readings In Biochem/biophysics",
"prereqs": []
},
"BCBP 9990": {
"title": "Dissertation",
"prereqs": []
},
"BIOL 2410": {
"title": "Embryology",
"prereqs": []
},
"BIOL 2900": {
"title": "Research In Biology",
"prereqs": []
},
"BIOL 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"BIOL 2980": {
"title": "Biomedical Research",
"prereqs": []
},
"BIOL 4930": {
"title": "Intro Mammalian Anatomy",
"prereqs": []
},
"BIOL 4940": {
"title": "Readings In Biology",
"prereqs": []
},
"BIOL 6940": {
"title": "Readings In Biol",
"prereqs": []
},
"BIOL 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"BIOL 9990": {
"title": "Dissertation",
"prereqs": []
},
"BMED 2940": {
"title": "Readings In Bmed",
"prereqs": []
},
"BMED 4940": {
"title": "Readings In Bmed",
"prereqs": []
},
"BMED 6940": {
"title": "Readings In Bmed",
"prereqs": []
},
"BMED 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"BMED 9990": {
"title": "Dissertation",
"prereqs": []
},
"CHME 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"CHME 2980": {
"title": "Senior Project",
"prereqs": []
},
"CHME 4940": {
"title": "Rdgs In Chemical Engr",
"prereqs": []
},
"CHME 6940": {
"title": "Rdg In Chemical Engr",
"prereqs": []
},
"CHME 6990": {
"title": "Masters Thesis",
"prereqs": []
},
"CHME 9990": {
"title": "Dissertation",
"prereqs": []
},
"CHEM 2210": {
"title": "Organic Compounds and Reactions",
"prereqs": [
"CHEM 1100",
"CHEM 1300"
]
},
"CHEM 2230": {
"title": "Organic Chemistry Lab I",
"prereqs": [
"CHEM 2250"
]
},
"CHEM 2250": {
"title": "Organic Chemistry I",
"prereqs": [
"CHEM 1100",
"CHEM 1110",
"CHEM 1120"
]
},
"CHEM 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"CHEM 2950": {
"title": "Undergraduate Research",
"prereqs": []
},
"CHEM 4940": {
"title": "Readings In Chem",
"prereqs": []
},
"CHEM 6940": {
"title": "Readings In Chem",
"prereqs": []
},
"CHEM 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"CHEM 9990": {
"title": "Dissertation",
"prereqs": []
},
"CIVL 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"CIVL 4940": {
"title": "Readings In Civl",
"prereqs": []
},
"CIVL 6940": {
"title": "Rdgs In Civil Engr",
"prereqs": []
},
"CIVL 6980": {
"title": "Master's Project",
"prereqs": []
},
"CIVL 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"CIVL 9990": {
"title": "Dissertation",
"prereqs": []
},
"COOP 4010": {
"title": "Co-op Assignment",
"prereqs": []
},
"COMM 6940": {
"title": "Studies In Communication",
"prereqs": []
},
"COMM 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"COMM 9990": {
"title": "Dissertation",
"prereqs": []
},
"CSCI 1200": {
"title": "Data Structures",
"prereqs": [
"CSCI 1100"
]
},
"CSCI 2220": {
"title": "Programming In Java",
"prereqs": []
},
"CSCI 2230": {
"title": "Programming In Perl",
"prereqs": []
},
"CSCI 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"CSCI 4150": {
"title": "Introduction To Artificial Intelligence",
"prereqs": [
"CSCI 2300"
]
},
"CSCI 4380": {
"title": "Database Systems",
"prereqs": [
"CSCI 2300"
]
},
"CSCI 4940": {
"title": "Readings In Csci",
"prereqs": []
},
"CSCI 6940": {
"title": "Readings In Csci",
"prereqs": []
},
"CSCI 6980": {
"title": "Master's Project",
"prereqs": []
},
"CSCI 9990": {
"title": "Dissertation",
"prereqs": []
},
"ENGR 1100": {
"title": "Intro To Engr Analysis",
"prereqs": []
},
"ENGR 1200": {
"title": "Eng Graphics & Cad",
"prereqs": []
},
"ENGR 1600": {
"title": "Materials Science For Engineer",
"prereqs": []
},
"ENGR 1940": {
"title": "Readings In Engr",
"prereqs": []
},
"ENGR 2020": {
"title": "Design & Innovation Studio III",
"prereqs": []
},
"ENGR 2070": {
"title": "Engineering Mechanics",
"prereqs": []
},
"ENGR 2100": {
"title": "Engr Thermodynamics",
"prereqs": []
},
"ENGR 2200": {
"title": "Dynamic Systems",
"prereqs": []
},
"ENGR 2300": {
"title": "Electronic Instrumentation",
"prereqs": [
"MATH 1020",
"PHYS 1200",
"PHYS 1250"
]
},
"ENGR 2400": {
"title": "Fluid Mechanics I",
"prereqs": []
},
"ENGR 2530": {
"title": "Strength Of Materials",
"prereqs": [
"ENGR 1100",
"MANE 1960"
]
},
"ENGR 2600": {
"title": "Modeling & Analysis Uncertaint",
"prereqs": [
"MATH 1010"
]
},
"ENGR 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ENGR 4760": {
"title": "Engineering Economics",
"prereqs": []
},
"ENGR 4940": {
"title": "Readings In Engr",
"prereqs": []
},
"DSES 2940": {
"title": "Readings in DSES",
"prereqs": []
},
"DSES 4240": {
"title": "Engineering Project Management",
"prereqs": []
},
"DSES 4940": {
"title": "Readings in DSES",
"prereqs": []
},
"DSES 6010": {
"title": "Applied Regression Analysis",
"prereqs": []
},
"DSES 6110": {
"title": "Intro To Appl Stat",
"prereqs": []
},
"DSES 6610": {
"title": "Systems Modeling in Decision Sciences",
"prereqs": []
},
"DSES 6620": {
"title": "Discrete-Event Simulation",
"prereqs": []
},
"DSES 6940": {
"title": "Readings in DSES",
"prereqs": []
},
"DSES 6980": {
"title": "Master\u00e2\u0080\u0099s Project",
"prereqs": []
},
"DSES 6990": {
"title": "Master\u00e2\u0080\u0099s Thesis",
"prereqs": []
},
"DSES 9990": {
"title": "Dissertation",
"prereqs": []
},
"ERTH 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ERTH 4940": {
"title": "Readings In Erth",
"prereqs": []
},
"ERTH 6940": {
"title": "Readings In Erth",
"prereqs": []
},
"ERTH 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ERTH 9990": {
"title": "Dissertation",
"prereqs": []
},
"ECON 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ECON 4940": {
"title": "Readings In Economics",
"prereqs": []
},
"ECON 6940": {
"title": "Readings In Economics",
"prereqs": []
},
"ECON 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ECON 9990": {
"title": "Dissertation",
"prereqs": []
},
"EPOW 2940": {
"title": "Epow Ind Study",
"prereqs": []
},
"EPOW 4940": {
"title": "Elect Power Engr Project",
"prereqs": []
},
"EPOW 4980": {
"title": "Senior Project",
"prereqs": []
},
"EPOW 6940": {
"title": "Readings In Epow",
"prereqs": []
},
"EPOW 6960": {
"title": "Topics In Epow",
"prereqs": []
},
"EPOW 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"EPOW 9990": {
"title": "Dissertation",
"prereqs": []
},
"ECSE 2100": {
"title": "Fields And Waves I",
"prereqs": [
"ECSE 2010",
"MATH 2010",
"MATH 2011",
"MATH 2012",
"PHYS 1200",
"PHYS 1250"
]
},
"ECSE 2720": {
"title": "Cptr Org & Logic Desg",
"prereqs": []
},
"ECSE 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ECSE 4940": {
"title": "Indep. Studies In Ecse",
"prereqs": []
},
"ECSE 4980": {
"title": "Senior Design Project",
"prereqs": []
},
"ECSE 6900": {
"title": "Seminar in Ecse",
"prereqs": []
},
"ECSE 6940": {
"title": "Readings In Ecse",
"prereqs": []
},
"ECSE 6980": {
"title": "Master's Project",
"prereqs": []
},
"ECSE 6990": {
"title": "Masters Thesis",
"prereqs": []
},
"ECSE 9990": {
"title": "Dissertation",
"prereqs": []
},
"ESCI 6990": {
"title": "Master's Thesis In Enginrg Sci",
"prereqs": []
},
"ENVE 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"ENVE 4480": {
"title": "Physics Of Nuclear Reactors",
"prereqs": []
},
"ENVE 4940": {
"title": "Readings In Enve",
"prereqs": []
},
"ENVE 6940": {
"title": "Readings In Enve",
"prereqs": []
},
"ENVE 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ENVE 9990": {
"title": "Dissertation",
"prereqs": []
},
"LANG 2940": {
"title": "Language Studies",
"prereqs": []
},
"LANG 4940": {
"title": "Language Studies",
"prereqs": []
},
"LANG 6940": {
"title": "Language Studies",
"prereqs": []
},
"LITR 2940": {
"title": "Literature Studies",
"prereqs": []
},
"LITR 2960": {
"title": "Topics In Litr",
"prereqs": []
},
"LITR 4940": {
"title": "Readings In Litr",
"prereqs": []
},
"LITR 6940": {
"title": "Readings In Litr",
"prereqs": []
},
"MGMT 2300": {
"title": "Financial Acctg In Digital Age",
"prereqs": [
"MGMT 1100"
]
},
"MGMT 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"MGMT 4850": {
"title": "Org Behavior In High Perf Org",
"prereqs": [
"MGMT 1100"
]
},
"MGMT 4940": {
"title": "Studies In Management",
"prereqs": []
},
"MGMT 4960": {
"title": "Topics In Mgmt",
"prereqs": []
},
"MGMT 6190": {
"title": "Introduction To Accounting And Financial Management",
"prereqs": []
},
"MGMT 6300": {
"title": "Emerging Markets",
"prereqs": []
},
"MGMT 6360": {
"title": "International Finance",
"prereqs": []
},
"MGMT 6490": {
"title": "Comp Advant & Operations Strat",
"prereqs": []
},
"MGMT 6500": {
"title": "Mrktg Mgt & Bus Strat",
"prereqs": []
},
"MGMT 6550": {
"title": "Marketing Research",
"prereqs": [
"MGMT 6100",
"MGMT 6510",
"MGMT 6520"
]
},
"MGMT 6710": {
"title": "Develop & Staff Org I",
"prereqs": []
},
"MGMT 6800": {
"title": "Consumer Behavio/ Prod Design",
"prereqs": []
},
"MGMT 6940": {
"title": "Independent Study",
"prereqs": []
},
"MGMT 6960": {
"title": "Topics In Mgmt",
"prereqs": []
},
"MGMT 6980": {
"title": "Practicum In Managemnt",
"prereqs": []
},
"MGMT 9990": {
"title": "Dissertation",
"prereqs": []
},
"MTLE 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"MTLE 4940": {
"title": "Readings In Mtse",
"prereqs": []
},
"MTLE 6940": {
"title": "Readings In Materials Engr",
"prereqs": []
},
"MTLE 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"MTLE 9990": {
"title": "Dissertation",
"prereqs": []
},
"MATP 4940": {
"title": "Readings In Mpst",
"prereqs": []
},
"MATP 6940": {
"title": "Readings In Mpst",
"prereqs": []
},
"MATP 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"MATH 1010": {
"title": "Calculus I",
"prereqs": []
},
"MATH 1020": {
"title": "Calculus II",
"prereqs": [
"MATH 1010"
]
},
"MATH 2400": {
"title": "Intro Diff Equations",
"prereqs": [
"MATH 1020"
]
},
"MATH 4170": {
"title": "Discrete Structures",
"prereqs": []
},
"MATH 4600": {
"title": "Advanced Calculus",
"prereqs": [
"MATH 2010"
]
},
"MATH 4940": {
"title": "Readings In Math",
"prereqs": []
},
"MATH 6940": {
"title": "Readings In Math",
"prereqs": []
},
"MATH 6980": {
"title": "Master's Project",
"prereqs": []
},
"MATH 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"MATH 9990": {
"title": "Dissertation",
"prereqs": []
},
"PHIL 2140": {
"title": "Introduction To Formal Logic",
"prereqs": []
},
"PHIL 2300": {
"title": "Asian Philosophies",
"prereqs": []
},
"PHIL 2940": {
"title": "Philosophy Studies",
"prereqs": []
},
"PHIL 2960": {
"title": "Topics In Phil",
"prereqs": [
"COGS 2120",
"IHSS 1140",
"PHIL 1110",
"PHIL 2100"
]
},
"PHIL 4940": {
"title": "Readings In Phil",
"prereqs": []
},
"PHIL 6940": {
"title": "Philosophy Studies",
"prereqs": []
},
"PHIL 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"PHYS 1160": {
"title": "Physics I For Engineers",
"prereqs": []
},
"PHYS 1230": {
"title": "Physics II",
"prereqs": []
},
"PHYS 2940": {
"title": "Special Proj In Physics",
"prereqs": []
},
"PHYS 6940": {
"title": "Readings In Phys",
"prereqs": []
},
"PHYS 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"PHYS 9990": {
"title": "Dissertation",
"prereqs": []
},
"PSYC 1960": {
"title": "Topics In Psych",
"prereqs": []
},
"PSYC 2960": {
"title": "Topics In Psychology",
"prereqs": []
},
"PSYC 4340": {
"title": "Human Sexuality",
"prereqs": []
},
"PSYC 4500": {
"title": "Drugs Society & Behavior",
"prereqs": [
"PSYC 1200"
]
},
"PSYC 4940": {
"title": "Readings In Psyc",
"prereqs": []
},
"PSYC 4960": {
"title": "Topics In Psyc",
"prereqs": [
"PSYC 1200"
]
},
"PSYC 4990": {
"title": "Undergraduate Thesis",
"prereqs": []
},
"PSYC 6940": {
"title": "Team & Leadership Research",
"prereqs": []
},
"PSYC 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"STSH 2940": {
"title": "Readings In Stsh",
"prereqs": []
},
"STSH 4800": {
"title": "Public Service and Social Justice",
"prereqs": [
"STSH 2500",
"STSS 2100",
"STSS 2210",
"STSS 2300",
"STSS 2510",
"STSS 2520",
"STSS 2700"
]
},
"STSH 4940": {
"title": "Readings In Stsh",
"prereqs": []
},
"STSH 4960": {
"title": "Topics In Stsh",
"prereqs": [
"STSS 2210"
]
},
"STSH 6940": {
"title": "Readings In Stsh",
"prereqs": []
},
"STSS 2940": {
"title": "Readings In Stss",
"prereqs": []
},
"STSS 4800": {
"title": "Public Service and Social Justice",
"prereqs": [
"STSH 2500",
"STSS 2100",
"STSS 2210",
"STSS 2300",
"STSS 2510",
"STSS 2520",
"STSS 2700"
]
},
"STSS 4940": {
"title": "Readings In Stss",
"prereqs": []
},
"STSS 4960": {
"title": "Topics In Stss",
"prereqs": []
},
"STSS 4980": {
"title": "Research Design",
"prereqs": []
},
"STSS 6940": {
"title": "Readings In Stss",
"prereqs": []
},
"STSS 6990": {
"title": "Masters Thesis",
"prereqs": []
},
"STSS 9990": {
"title": "Dissertation",
"prereqs": []
},
"WRIT 2340": {
"title": "Speech Communication",
"prereqs": []
},
"WRIT 2940": {
"title": "Ugrad Independent Study",
"prereqs": []
},
"WRIT 2960": {
"title": "Topics In Writ",
"prereqs": []
},
"WRIT 4120": {
"title": "Tec/pro Communication",
"prereqs": []
},
"WRIT 4940": {
"title": "Readings In Writing",
"prereqs": []
},
"ARCH 1200": {
"title": "Beginners Architecture Career Discovery Program",
"prereqs": []
},
"ARCH 2220": {
"title": "Architecture Design 2",
"prereqs": [
"ARCH 2210"
]
},
"BIOL 2500": {
"title": "Genetics & Evolution",
"prereqs": [
"BIOL 2120"
]
},
"BIOL 2930": {
"title": "Out Of Classroom Exp - Biology",
"prereqs": []
},
"BIOL 2960": {
"title": "Topics In Biol",
"prereqs": []
},
"BIOL 2990": {
"title": "Research",
"prereqs": []
},
"CHEM 0960": {
"title": "Topics In Chemistry",
"prereqs": []
},
"CHEM 2220": {
"title": "Organic Synthesis",
"prereqs": [
"CHEM 2210"
]
},
"CHEM 2240": {
"title": "Organic Chemistry Lab II",
"prereqs": [