diff --git a/.gitignore b/.gitignore index d9952f6..709eea2 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,6 @@ lambda/node_modules/.bin hello-world/out.json test.js test.json +package-lock.json +node_modules/ +scratch.js \ No newline at end of file diff --git a/README.md b/README.md index 2d72e0b..f050533 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # ScheduleMaker ReadME +[Click here for the link to the app (v1)](http://schedule-maker.s3-website.us-east-2.amazonaws.com/) +# This repo will be archived and view-only. Future development will take place in the new dedicated repos for each functionality. + [Click here for the Updated Project Proposal](https://github.com/3296f19temple/schedulemaker/blob/master/Proposal.md) ## Project Documentation Overview diff --git a/hello-world/cache.js b/hello-world/cache.js index a68e5de..8156345 100644 --- a/hello-world/cache.js +++ b/hello-world/cache.js @@ -1,26 +1,31 @@ +/*jshint esversion: 8 */ + /** - * @module Cache - * Controls the state of global objects representing connections to AWS services that can be reused throughout invokations. + * @module Cache + * Controls the state of global objects representing connections to AWS services that can be reused throughout invokations. * If the variable does not exist in the namespace, it is instantiated and then reused upon subsequent executions in the same container. */ -module.exports = (params={S3:{endpoint: 'http://localhost:4572', s3ForcePathStyle: true, credentials: {accessKeyId: 'foo', secretAccessKey: 'bar'}}, - DocumentClient:{endpoint: 'http://localhost:4569'}, region: 'us-east-1'}) => { +var PARAMS = {S3: {endpoint: 'http://localhost:4572', s3ForcePathStyle: true, credentials: {accessKeyId: 'foo', secretAccessKey: 'bar'}}, + DocumentClient: {endpoint: 'http://localhost:4569'}, region: 'us-east-1'}; +module.exports = (params = PARAMS) => { + var aws = null; if (!aws){ - var aws = require('aws-sdk'); + aws = require('aws-sdk'); } + var documentclient = null; if (!documentclient){ - var documentclient = new aws.DynamoDB.DocumentClient(params.DocumentClient); + documentclient = new aws.DynamoDB.DocumentClient(params.DocumentClient); } + var s3 = null; if (!s3){ - var s3 = new aws.S3(params.S3); - } - - return { - S3: s3, - DocumentClient: documentclient + s3 = new aws.S3(params.S3); } -} \ No newline at end of file + return { + S3: s3, + DocumentClient: documentclient + }; +}; diff --git a/hello-world/index.js b/hello-world/index.js index 885e504..b33cbff 100644 --- a/hello-world/index.js +++ b/hello-world/index.js @@ -1,3 +1,5 @@ +/*jshint esversion: 8 */ + /** * Load the caching module if it doesn't exist in the namespace */ @@ -55,5 +57,4 @@ exports.handler = async function(event, context){ return error; } -} - +}; diff --git a/lambda/node_modules/aws-sdk b/lambda/node_modules/aws-sdk index 7f3daac..d843238 120000 --- a/lambda/node_modules/aws-sdk +++ b/lambda/node_modules/aws-sdk @@ -1 +1 @@ -../../../.npm-global/lib/node_modules/aws-sdk \ No newline at end of file +../../../../.npm-global/lib/node_modules/aws-sdk \ No newline at end of file diff --git a/lambda/node_modules/banner/index.js b/lambda/node_modules/banner/index.js index c1c58af..bc091ff 100644 --- a/lambda/node_modules/banner/index.js +++ b/lambda/node_modules/banner/index.js @@ -1,3 +1,6 @@ +/*jshint esversion: 8*/ +'use strict'; + const https = require('https'); const querystring = require('querystring'); @@ -8,28 +11,27 @@ const querystring = require('querystring'); const host = 'prd-xereg.temple.edu'; const basePath = '/StudentRegistrationSsb/ssb'; -const INSTR_MAX = 4000; +const INSTR_MAX = 3700; +const PAGE_SIZE = 100; /** * @class Class to interact with the SSB Server */ class Banner { - constructor(){ - this.SessionId = Date.now(); - } - - async build(term){ - if (arguments.length < 1){ + constructor(term){ + if (arguments.length < 1 || term === undefined || term === null){ throw new Error('Must provide term to complete object construction'); } - await this._init(term); - return this; + this.SessionId = Date.now(); + this.Term = term; + //Set server for first classSearch + this.reset = this._init(); } - async _init(term){ + async _init(){ const data = querystring.stringify({ 'uniqueSessionId': this.SessionId, - 'term': term + 'term': this.Term }); const options = { @@ -41,7 +43,7 @@ class Banner { 'Content-Type': 'application/x-www-form-urlencoded' } }; - this.Term = term; + let res = await promiseRequest(options, data); this.Cookie = res.Response.headers['set-cookie']; } @@ -81,22 +83,25 @@ class Banner { return res.Data; } - async getInstructors(){ + async getInstructors(offset, max){ const path = '/classSearch/get_instructor'; - const params = querystring.stringify({ - offset: 1, - max: INSTR_MAX, - term: this.Term - }); - const options = { - method: 'GET', - hostname: host, - path: `${basePath}${path}?${params}`, - port: 443 - }; - - let res = await promiseRequest(options); - return res.Data; + const idxs = [...Array(INSTR_MAX / PAGE_SIZE).keys()].map(i => i + 1); + let res = await Promise.all(idxs.map(async idx => { + const params = querystring.stringify({ + offset: idx, + max: PAGE_SIZE, + term: this.Term + }); + const options = { + method: 'GET', + hostname: host, + path: `${basePath}${path}?${params}`, + port: 443 + }; + return promiseRequest(options); + })); + + return res.map(obj => obj.Data).flat(); } async getCampus(){ @@ -153,6 +158,7 @@ class Banner { if (openOnly) params.chk_open_only = true; params = querystring.stringify(params); + await this.reset; const options = { method: 'GET', hostname: host, @@ -162,11 +168,48 @@ class Banner { 'Cookie': this.Cookie } }; + let res = await promiseRequest(options); - //Reset the server for the next class search request - this._init(this.Term); + //Reset server for next classSearch + this.reset = this._init(); return res.Data.data; } + + async catalogSearch(subject){ + if (arguments.length < 1){ + throw new Error('Must provide subject'); + } + const path = '/courseSearchResults'; + let params = { + txt_subject: subject, + txt_term: this.Term, + pageOffset: 0, + pageMaxSize: -1, + uniqueSessionId: this.SessionId + }; + params = querystring.stringify(params); + + const options = { + method: 'GET', + hostname: host, + path: `${basePath}${path}?${params}`, + port: 443, + headers: { + 'Cookie': this.Cookie + } + }; + await this.reset; + let res = await promiseRequest(options); + //Reset server for next classSearch + this.reset = this._init(); + return res.Data.data; + } + + async getAllCourses(){ + let subjects = (await this.getSubjects()).map(subj => subj.code); + let courses = await Promise.all(subjects.map(async subj => this.catalogSearch(subj))); + return courses.flat(); + } } /** @@ -194,4 +237,4 @@ async function promiseRequest(options, data=null){ }); } -module.exports = Banner; \ No newline at end of file +module.exports = Banner; diff --git a/lambda/node_modules/conversions/index.js b/lambda/node_modules/conversions/index.js index b1a354f..52b5f22 100644 --- a/lambda/node_modules/conversions/index.js +++ b/lambda/node_modules/conversions/index.js @@ -1,4 +1,4 @@ - +'use strict'; /** * @module @@ -15,9 +15,9 @@ module.exports = { 'currentWaitlist': section.waitCount, 'totalWaitlist': section.waitCapacity, 'isOpen': section.openSection, - 'section': Number(section.sequenceNumber), + 'section': section.sequenceNumber, 'courseName': `${section.subject} ${section.courseNumber}`, - 'campus': section.meetingsFaculty[0].meetingTime.campus, + 'campus': getCampus(section), 'professor': getInstructor(section), 'classTimes': getClasstimes(section) } @@ -26,7 +26,7 @@ module.exports = { function getClasstimes(section){ let meetingTimes = section.meetingsFaculty.map(obj => obj.meetingTime); return meetingTimes.map(mt => convertMeetingTime(mt)) - .reduce((acc, val) => acc.concat(val), []); + .flat(); } function convertMeetingTime(meetingTime){ @@ -42,14 +42,16 @@ module.exports = { }); } - /** - * Gets the name of the professor for the section - * @param {BannerSection} section - */ + function getCampus(section){ + return section.meetingsFaculty.length > 0 ? + section.meetingsFaculty[0].meetingTime.campus : + null; + } + function getInstructor(section){ return section.faculty.length > 0 ? - section.faculty.find(f => f.primaryIndicator).displayName : - null; + section.faculty.find(f => f.primaryIndicator).displayName : + null; } /** @@ -79,7 +81,7 @@ module.exports = { SchedulerToUI: function(schedules){ return schedules.map(schedule => schedule .map(section => convertSection(section) - .reduce((acc, val) => acc.concat(val), []))); + .flat())); function convertSection(section){ return section.classTimes.map(classTime => { @@ -106,6 +108,10 @@ module.exports = { } }); } + }, + + ConvertBannerCatalog: function(courses){ + return courses.map(course => `${course.subject} ${course.courseNumber}`); } } diff --git a/lambda/node_modules/scheduler/index.js b/lambda/node_modules/scheduler/index.js index 813b755..a2ddd05 100644 --- a/lambda/node_modules/scheduler/index.js +++ b/lambda/node_modules/scheduler/index.js @@ -1,3 +1,5 @@ +'use strict'; + /** * @function peek - Returns the last item in the array without removing it * @return {*} - The last item in the array @@ -27,8 +29,8 @@ function hasTimeConflict(s1, s2){ } function hasSameDay(s1, s2){ - days1 = s1.classTimes.map(c => c.day); - days2 = s2.classTimes.map(c => c.day); + let days1 = s1.classTimes.map(c => c.day); + let days2 = s2.classTimes.map(c => c.day); return days1.some(a => days2.some(b => a === b)); } @@ -39,6 +41,9 @@ function hasClassTimeConflict(c1, c2){ return startConflict || endConflict; } +/** + * For now, it might seem redundent to put the scheduling algorithm into a class, but it will allow for more flexibility for any more sophisticated parameters we might add later on + */ class Scheduler{ constructor(){ @@ -111,7 +116,7 @@ class Scheduler{ let top = current.peek(); while (j < top.length) { let section = top[j]; - if (noConflict(section, temp)) { + if (section.classTimes.length == 0 || noConflict(section, temp)) { temp.push(section); index.push(j + 1); break; diff --git a/lambda/package-lock.json b/lambda/package-lock.json index 896eb63..fe9f89f 100644 --- a/lambda/package-lock.json +++ b/lambda/package-lock.json @@ -136,11 +136,6 @@ "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=" }, - "pathval": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", - "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=" - }, "type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", @@ -924,6 +919,11 @@ } } } + }, + "pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" } } } diff --git a/lambda/scheduler/cache.js b/lambda/scheduler/cache.js index 219412d..ceb4ed4 100644 --- a/lambda/scheduler/cache.js +++ b/lambda/scheduler/cache.js @@ -1,3 +1,5 @@ +'use strict'; + /** * @module Cache * Controls the state of global objects representing connections to AWS services that can be reused throughout invokations. @@ -5,11 +7,8 @@ */ module.exports = function(){ - if (!aws){ - var aws = require('aws-sdk'); - } - if (!documentclient){ + var aws = require('aws-sdk'); var documentclient = new aws.DynamoDB.DocumentClient(); } diff --git a/lambda/scheduler/index.js b/lambda/scheduler/index.js index 0a3898c..99f7229 100644 --- a/lambda/scheduler/index.js +++ b/lambda/scheduler/index.js @@ -1,3 +1,4 @@ +'use strict'; if (!cache){ var cache = require('./cache'); @@ -7,20 +8,20 @@ exports.handler = async (event, context) => { let DBToScheduler = cache.DBToScheduler; let SchedulerToUI = cache.SchedulerToUI; let scheduler = cache.Scheduler; - + let params = JSON.parse(event.body); let courseList = params.courses; + let campusList = (Array.isArray(params.campus)) ? params.campus : [params.campus]; console.log(`Received the following courses: ${courseList}`); - + console.log(`Received the following campuses: ${campusList}`); try { - var data = await getSections(courseList); + var data = await getSections(courseList, campusList); } catch (error) { console.log(`'Unable to get all courses from database: ${error}`); return { statusCode: '500', - body: JSON.stringify({ - Error: error - }), + body: "Unable to process request", + error: error, headers: { 'Content-Type': 'application/json', 'Access-Control-Allow-Methods': '*', @@ -33,6 +34,7 @@ exports.handler = async (event, context) => { let schedules = scheduler.createSchedules(courses); let results = SchedulerToUI(schedules); console.log(`Created ${results.length} schedules`); + results = results.slice(0, process.env.MAX_SCHEDULES); return { statusCode: '200', @@ -45,19 +47,26 @@ exports.handler = async (event, context) => { }; }; -async function getSections(courses){ - let docClient = cache.DocumentClient; - return Promise.all(courses.map(async course => { +async function getSections(courses, campus){ + const docClient = cache.DocumentClient; + return Promise.all(courses.map(course => { let params = { TableName : process.env.TABLENAME, KeyConditionExpression : "#courseName = :course", ExpressionAttributeNames : { - "#courseName" : "courseName" + "#courseName" : "courseName", + '#campus': 'campus', + '#isOpen': 'isOpen' }, - ExpressionAttributeValues : { - ":course" : course - - } + ExpressionAttributeValues : function(){ + let obj = { + ":course": course, + ':true': true + }; + campus.forEach(campus => obj[`:${campus}`] = campus); + return obj; + }(), + FilterExpression: `#isOpen = :true AND #campus IN (${campus.map(campus => `:${campus}`).join()})` }; return docClient.query(params).promise(); diff --git a/lambda/scheduler/upload.sh b/lambda/scheduler/upload.sh index deceaa1..f6d8898 100755 --- a/lambda/scheduler/upload.sh +++ b/lambda/scheduler/upload.sh @@ -1,4 +1,7 @@ #!/bin/bash zip -u function.zip index.js cache.js +cd ../ +zip -u scheduler/function.zip node_modules/conversions/* node_modules/scheduler/* +cd scheduler aws lambda update-function-code --function-name scheduler --zip-file fileb://function.zip \ No newline at end of file diff --git a/lambda/test/banner.js b/lambda/test/banner.js index 944848e..7e68480 100644 --- a/lambda/test/banner.js +++ b/lambda/test/banner.js @@ -1,18 +1,21 @@ +/*jshint esversion: 8*/ +'use strict'; + var assert = require('assert'); var Banner = require('banner'); -describe('Banner', async function () { +describe('Banner', function () { /** * SETUP */ - const term = 202003 + const term = 202003; /** - * BUILD() + * CONSTRUCTOR */ - describe('#build(term)', function () { + describe('#constructor(term)', function () { it('Should throw an error when a term is not passed', function () { - assert.rejects(async () => new Banner().build, Error, 'Must provide term to complete object construction'); + assert.throws(() => new Banner(), Error, 'Must provide term to complete object construction'); }); }); @@ -21,16 +24,16 @@ describe('Banner', async function () { */ describe('#_init()', function () { it('Should set Banner.Cookie value', async function () { - let b = new Banner(); - await b._init(term); - assert(banner.Cookie); + let b = new Banner(term); + await b._init(); + assert.strict(banner.Cookie); }); }); /** * SETUP */ - var banner = await new Banner().build(term); + var banner = new Banner(term); /** * GET_TERMS() @@ -41,12 +44,12 @@ describe('Banner', async function () { }); it('Should not return void', async function () { - assert(await banner.getTerms()); + assert.strict(await banner.getTerms()); }); it('Should return a non-empty array', async function () { let terms = await banner.getTerms(); - assert(terms.length > 0); + assert.strict(terms.length > 0); }); }); @@ -59,12 +62,12 @@ describe('Banner', async function () { }); it('Should not return void', async function () { - assert(await banner.getSubjects()); + assert.strict(await banner.getSubjects()); }); it('Should return a non-empty array', async function () { let terms = await banner.getSubjects(); - assert(terms.length > 0); + assert.strict(terms.length > 0); }); }); @@ -77,12 +80,12 @@ describe('Banner', async function () { }); it('Should not return void', async function () { - assert(await banner.getCampus()); + assert.strict(await banner.getCampus()); }); it('Should return a non-empty array', async function () { let terms = await banner.getCampus(); - assert(terms.length > 0); + assert.strict(terms.length > 0); }); }); @@ -95,12 +98,12 @@ describe('Banner', async function () { }); it('Should not return void', async function () { - assert(await banner.getColleges()); + assert.strict(await banner.getColleges()); }); it('Should return a non-empty array', async function () { let terms = await banner.getColleges(); - assert(terms.length > 0); + assert.strict(terms.length > 0); }); }); @@ -113,12 +116,12 @@ describe('Banner', async function () { }); it('Should not return void', async function () { - assert(await banner.getAttributes()); + assert.strict(await banner.getAttributes()); }); it('Should return a non-empty array', async function () { let terms = await banner.getAttributes(); - assert(terms.length > 0); + assert.strict(terms.length > 0); }); }); @@ -127,17 +130,18 @@ describe('Banner', async function () { */ describe('#getInstructors()', function () { this.timeout(15000); + var data = null; it('Should not throw an error', async function () { assert.doesNotReject(banner.getInstructors()); }); it('Should not return void', async function () { - assert(await banner.getInstructors()); + data = await banner.getInstructors(); + assert.strict(data); }); - it('Should return a non-empty array', async function () { - let terms = await banner.getInstructors(); - assert(terms.length > 0); + it('Should return a non-empty array', function () { + assert.strict(data.length > 0); }); }); @@ -145,13 +149,59 @@ describe('Banner', async function () { * CLASS_SEARCH() */ describe('#classSearch(subjects)', function () { - this.timeout(10000); + this.timeout(30000); + var data = null; it('Should throw an error when a subject is not passed', function () { assert.rejects(async () => banner.classSearch, Error, 'Must provide subject'); }); it('Should not return NULL', async function(){ - assert(await banner.classSearch('CIS')); + data = await banner.classSearch('CIS'); + assert.strict(data); + }); + + it('Should return a non-empty array', function () { + assert.strict(data.length > 0); + }); + }); + + /** + * CATALOGSEARCH() + */ + describe('#catalogSearch(subjects)', function () { + this.timeout(30000); + var data = null; + it('Should throw an error when a subject is not passed', function () { + assert.rejects(async () => banner.catalogSearch, Error, 'Must provide subject'); + }); + + it('Should not return NULL', async function(){ + data = await banner.catalogSearch('CIS'); + assert.strict(data); + }); + + it('Should return a non-empty array', function () { + assert.strict(data.length > 0); + }); + }); + + /** + * GETALLCOURSES() + */ + describe('#getAllCourses()', function () { + this.timeout(30000); + var data = null; + it('Should not throw an error', function () { + assert.doesNotReject(async () => banner.getAllCourses()); + }); + + it('Should not return NULL', async function(){ + data = await banner.getAllCourses(); + assert.strict(data); + }); + + it('Should return a non-empty array', function () { + assert.strict(data.length > 0); }); }); -}); \ No newline at end of file +}); diff --git a/lambda/test/conversions.js b/lambda/test/conversions.js new file mode 100644 index 0000000..8f0a6db --- /dev/null +++ b/lambda/test/conversions.js @@ -0,0 +1,35 @@ +'use strict'; + +var {BannerToDB, ConvertBannerCatalog} = require('conversions'); +var asssert = require('assert'); +var fs = require ('fs'); + +describe('conversions', function() { + var data = JSON.parse(fs.readFileSync('./test/conversions.json', 'utf8')); + console.log(data) + + describe('#BannerToDB', function() { + let testData = data.BannerToDB; + it('Should create multiple classtimes', function() { + let example = testData['multipleMeetingTimes']; + asssert.deepStrictEqual(BannerToDB([example.input]), [example.output]); + }); + + it('Should create empty classtime array for meetingTimes with no days', function() { + let example = testData['meetingTimeNoDays']; + asssert.deepStrictEqual(BannerToDB([example.input]), [example.output]); + }); + + it('Should handle empty meetingTime and faculty arrays', function() { + let example = testData['emptyMeetings']; + asssert.deepStrictEqual(BannerToDB([example.input]), [example.output]); + }); + }); + + describe('#ConvertBannerCatalog', function() { + let testData = data.BannerCatalog; + it('Should return a concatenated string', function() { + asssert.deepStrictEqual(ConvertBannerCatalog([testData.input]), [testData.output]); + }); + }); +}); \ No newline at end of file diff --git a/lambda/test/conversions.json b/lambda/test/conversions.json new file mode 100644 index 0000000..cd7d850 --- /dev/null +++ b/lambda/test/conversions.json @@ -0,0 +1,394 @@ +{ + "SchedulerToUI": { + + }, + "DBToScheduler": { + + }, + "BannerCatalog": { + "input": { + "id": 8307, + "termEffective": "201436", + "courseNumber": "2101", + "subject": "ACCT", + "subjectCode": "ACCT", + "college": "Business & Mngmnt, Fox School", + "collegeCode": "BU", + "department": "Business:Accounting", + "departmentCode": "1502", + "courseTitle": "Financial Accounting", + "durationUnit": null, + "numberOfUnits": null, + "attributes": null, + "gradeModes": null, + "ceu": null, + "courseScheduleTypes": null, + "courseLevels": null, + "creditHourHigh": null, + "creditHourLow": 3, + "creditHourIndicator": null, + "lectureHourLow": null, + "lectureHourHigh": null, + "lectureHourIndicator": null, + "billHourLow": 3, + "billHourHigh": null, + "billHourIndicator": null, + "labHourLow": null, + "labHourHigh": null, + "labHourIndicator": null, + "otherHourLow": null, + "otherHourHigh": null, + "otherHourIndicator": null, + "description": null, + "subjectDescription": "Accounting", + "courseDescription": "Basic concepts and principles underlying the preparation and use of financial statements. Among the ", + "division": "Undergraduate", + "termStart": "200836", + "termEnd": "999999", + "preRequisiteCheckMethodCde": "C", + "anySections": null + }, + "output": "ACCT 2101" + }, + "BannerToDB": { + "multipleMeetingTimes": { + "input": { + "id": 487879, + "term": "202003", + "termDesc": "2020 Spring", + "courseReferenceNumber": "30078", + "partOfTerm": "1", + "courseNumber": "3207", + "subject": "CIS", + "subjectDescription": "Computer & Information Science", + "sequenceNumber": "002", + "campusDescription": "Main", + "scheduleTypeDescription": "Lecture and Lab", + "courseTitle": "Introduction to Systems Programming and Operating Systems", + "creditHours": null, + "maximumEnrollment": 30, + "enrollment": 19, + "seatsAvailable": 11, + "waitCapacity": 100, + "waitCount": 0, + "waitAvailable": 100, + "crossList": "UR", + "crossListCapacity": 175, + "crossListCount": 63, + "crossListAvailable": 112, + "creditHourHigh": null, + "creditHourLow": 4, + "creditHourIndicator": null, + "openSection": true, + "linkIdentifier": null, + "isSectionLinked": false, + "subjectCourse": "CIS3207", + "faculty": [ + { + "bannerId": "903510150", + "category": null, + "class": "net.hedtech.banner.student.faculty.FacultyResultDecorator", + "courseReferenceNumber": "30078", + "displayName": "Eugene Kwatny", + "emailAddress": "gkwatny@temple.edu", + "primaryIndicator": true, + "term": "202003" + } + ], + "meetingsFaculty": [ + { + "category": "02", + "class": "net.hedtech.banner.student.schedule.SectionSessionDecorator", + "courseReferenceNumber": "30078", + "faculty": [], + "meetingTime": { + "beginTime": "1000", + "building": "SERC", + "buildingDescription": "Science Ed and Research Ctr", + "campus": "MN", + "campusDescription": "Main", + "category": "02", + "class": "net.hedtech.banner.general.overall.MeetingTimeDecorator", + "courseReferenceNumber": "30078", + "creditHourSession": 0.0, + "endDate": "05/06/2020", + "endTime": "1150", + "friday": false, + "hoursWeek": 1.83, + "meetingScheduleType": "LL", + "meetingType": "LAB", + "meetingTypeDescription": "Laboratory", + "monday": false, + "room": "00206", + "saturday": false, + "startDate": "01/13/2020", + "sunday": false, + "term": "202003", + "thursday": false, + "tuesday": false, + "wednesday": true + }, + "term": "202003" + }, + { + "category": "01", + "class": "net.hedtech.banner.student.schedule.SectionSessionDecorator", + "courseReferenceNumber": "30078", + "faculty": [], + "meetingTime": { + "beginTime": "1230", + "building": "SERC", + "buildingDescription": "Science Ed and Research Ctr", + "campus": "MN", + "campusDescription": "Main", + "category": "01", + "class": "net.hedtech.banner.general.overall.MeetingTimeDecorator", + "courseReferenceNumber": "30078", + "creditHourSession": 4.0, + "endDate": "05/06/2020", + "endTime": "1350", + "friday": false, + "hoursWeek": 2.66, + "meetingScheduleType": "LL", + "meetingType": "LEC", + "meetingTypeDescription": "Lecture", + "monday": false, + "room": "00116", + "saturday": false, + "startDate": "01/13/2020", + "sunday": false, + "term": "202003", + "thursday": true, + "tuesday": true, + "wednesday": false + }, + "term": "202003" + } + ], + "reservedSeatSummary": null, + "sectionAttributes": [], + "bookstores": [ + { + "url": "https://prd-wlssb.temple.edu/prod8/szp_reg_bookstore.p_ShowBookStoreLink_LuC?term_in=202003&camp_in=MN&dept_in=CIS&crse_in=3207&sect_in=002", + "label": "View Course Materials" + } + ], + "feeAmount": null + }, + "output": { + "classTimes": [ + { + "building": "SERC", + "day": "W", + "endTime": 1150, + "roomNumber": "00206", + "startTime": 1000, + "type": "LAB" + }, + { + "building": "SERC", + "day": "T", + "endTime": 1350, + "roomNumber": "00116", + "startTime": 1230, + "type": "LEC" + }, + { + "building": "SERC", + "day": "R", + "endTime": 1350, + "roomNumber": "00116", + "startTime": 1230, + "type": "LEC" + } + ], + "courseName": "CIS 3207", + "crn": 30078, + "currentSeats": 19, + "currentWaitlist": 0, + "isOpen": true, + "professor": "Eugene Kwatny", + "section": "002", + "title": "Introduction to Systems Programming and Operating Systems", + "totalSeats": 30, + "totalWaitlist": 100, + "campus": "MN" + } + }, + "meetingTimeNoDays": { + "input": { + "id": 475368, + "term": "202003", + "termDesc": "2020 Spring", + "courseReferenceNumber": "1816", + "partOfTerm": "1", + "courseNumber": "4500", + "subject": "MUSC", + "subjectDescription": "Music", + "sequenceNumber": "001", + "campusDescription": "Main", + "scheduleTypeDescription": "Base Lecture", + "courseTitle": "Instrumental Ensemble", + "creditHours": null, + "maximumEnrollment": 150, + "enrollment": 86, + "seatsAvailable": 64, + "waitCapacity": 100, + "waitCount": 0, + "waitAvailable": 100, + "crossList": null, + "crossListCapacity": null, + "crossListCount": null, + "crossListAvailable": null, + "creditHourHigh": null, + "creditHourLow": 1, + "creditHourIndicator": null, + "openSection": true, + "linkIdentifier": null, + "isSectionLinked": false, + "subjectCourse": "MUSC4500", + "faculty": [ + { + "bannerId": "904549182", + "category": null, + "class": "net.hedtech.banner.student.faculty.FacultyResultDecorator", + "courseReferenceNumber": "1816", + "displayName": "Eric J. Schweingruber", + "emailAddress": "eschwein@temple.edu", + "primaryIndicator": true, + "term": "202003" + }, + { + "bannerId": "915313260", + "category": null, + "class": "net.hedtech.banner.student.faculty.FacultyResultDecorator", + "courseReferenceNumber": "1816", + "displayName": "Andreas Delfs", + "emailAddress": "tug29659@temple.edu", + "primaryIndicator": false, + "term": "202003" + } + ], + "meetingsFaculty": [ + { + "category": "01", + "class": "net.hedtech.banner.student.schedule.SectionSessionDecorator", + "courseReferenceNumber": "1816", + "faculty": [], + "meetingTime": { + "beginTime": null, + "building": null, + "buildingDescription": null, + "campus": null, + "campusDescription": null, + "category": "01", + "class": "net.hedtech.banner.general.overall.MeetingTimeDecorator", + "courseReferenceNumber": "1816", + "creditHourSession": 0.0, + "endDate": "05/06/2020", + "endTime": null, + "friday": false, + "hoursWeek": 1.0, + "meetingScheduleType": "BAS", + "meetingType": "CLAS", + "meetingTypeDescription": "Class", + "monday": false, + "room": null, + "saturday": false, + "startDate": "01/13/2020", + "sunday": false, + "term": "202003", + "thursday": false, + "tuesday": false, + "wednesday": false + }, + "term": "202003" + } + ], + "reservedSeatSummary": null, + "sectionAttributes": [], + "bookstores": [ + { + "url": "https://prd-wlssb.temple.edu/prod8/szp_reg_bookstore.p_ShowBookStoreLink_LuC?term_in=202003&camp_in=MN&dept_in=MUSC&crse_in=4500&sect_in=001", + "label": "View Course Materials" + } + ], + "feeAmount": "$100.00" + }, + "output": { + "classTimes": [], + "courseName": "MUSC 4500", + "crn": 1816, + "currentSeats": 86, + "currentWaitlist": 0, + "isOpen": true, + "professor": "Eric J. Schweingruber", + "section": "001", + "title": "Instrumental Ensemble", + "totalSeats": 150, + "totalWaitlist": 100, + "campus": null + } + + }, + "emptyMeetings": { + "input": { + "id": 492822, + "term": "202003", + "termDesc": "2020 Spring", + "courseReferenceNumber": "37231", + "partOfTerm": "1", + "courseNumber": "9998", + "subject": "CEE", + "subjectDescription": "Civil Engineering", + "sequenceNumber": "015", + "campusDescription": "Main", + "scheduleTypeDescription": "Dissertation Course", + "courseTitle": "Pre-Dissertation Research", + "creditHours": null, + "maximumEnrollment": 5, + "enrollment": 0, + "seatsAvailable": 5, + "waitCapacity": 100, + "waitCount": 0, + "waitAvailable": 100, + "crossList": null, + "crossListCapacity": null, + "crossListCount": null, + "crossListAvailable": null, + "creditHourHigh": 6, + "creditHourLow": 1, + "creditHourIndicator": "TO", + "openSection": true, + "linkIdentifier": null, + "isSectionLinked": false, + "subjectCourse": "CEE9998", + "faculty": [], + "meetingsFaculty": [], + "reservedSeatSummary": null, + "sectionAttributes": [], + "bookstores": [ + { + "url": "https://prd-wlssb.temple.edu/prod8/szp_reg_bookstore.p_ShowBookStoreLink_LuC?term_in=202003&camp_in=MN&dept_in=CEE&crse_in=9998&sect_in=015", + "label": "View Course Materials" + } + ], + "feeAmount": null + }, + "output": { + "classTimes": [], + "courseName": "CEE 9998", + "crn": 37231, + "currentSeats": 0, + "currentWaitlist": 0, + "isOpen": true, + "professor": null, + "section": "015", + "title": "Pre-Dissertation Research", + "totalSeats": 5, + "totalWaitlist": 100, + "campus": null + } + } + } +} \ No newline at end of file diff --git a/lambda/test/models.js b/lambda/test/models.js deleted file mode 100644 index b6c45a9..0000000 --- a/lambda/test/models.js +++ /dev/null @@ -1,19 +0,0 @@ -var models = require('models'); -var asssert = require('assert'); -var fs = require ('fs'); -var { promisify } = require('util'); -var readFile = promisify(fs.readFile); - -describe('models', function() { - - describe('#BannerToDB.convert', function() { - var testData = {} - before(async function(){ - testData = JSON.parse(await readFile('./test/models.json')); - }); - - it('Should match the database format', function() { - testData.forEach(example => asssert.deepEqual(models.BannerToDB.convert([example.input]), [example.output])); - }); - }); -}); \ No newline at end of file diff --git a/lambda/test/models.json b/lambda/test/models.json deleted file mode 100644 index c5b4717..0000000 --- a/lambda/test/models.json +++ /dev/null @@ -1,281 +0,0 @@ -[ - { - "input": { - "id": 487879, - "term": "202003", - "termDesc": "2020 Spring", - "courseReferenceNumber": "30078", - "partOfTerm": "1", - "courseNumber": "3207", - "subject": "CIS", - "subjectDescription": "Computer & Information Science", - "sequenceNumber": "002", - "campusDescription": "Main", - "scheduleTypeDescription": "Lecture and Lab", - "courseTitle": "Introduction to Systems Programming and Operating Systems", - "creditHours": null, - "maximumEnrollment": 30, - "enrollment": 19, - "seatsAvailable": 11, - "waitCapacity": 100, - "waitCount": 0, - "waitAvailable": 100, - "crossList": "UR", - "crossListCapacity": 175, - "crossListCount": 63, - "crossListAvailable": 112, - "creditHourHigh": null, - "creditHourLow": 4, - "creditHourIndicator": null, - "openSection": true, - "linkIdentifier": null, - "isSectionLinked": false, - "subjectCourse": "CIS3207", - "faculty": [ - { - "bannerId": "903510150", - "category": null, - "class": "net.hedtech.banner.student.faculty.FacultyResultDecorator", - "courseReferenceNumber": "30078", - "displayName": "Eugene Kwatny", - "emailAddress": "gkwatny@temple.edu", - "primaryIndicator": true, - "term": "202003" - } - ], - "meetingsFaculty": [ - { - "category": "02", - "class": "net.hedtech.banner.student.schedule.SectionSessionDecorator", - "courseReferenceNumber": "30078", - "faculty": [], - "meetingTime": { - "beginTime": "1000", - "building": "SERC", - "buildingDescription": "Science Ed and Research Ctr", - "campus": "MN", - "campusDescription": "Main", - "category": "02", - "class": "net.hedtech.banner.general.overall.MeetingTimeDecorator", - "courseReferenceNumber": "30078", - "creditHourSession": 0.0, - "endDate": "05/06/2020", - "endTime": "1150", - "friday": false, - "hoursWeek": 1.83, - "meetingScheduleType": "LL", - "meetingType": "LAB", - "meetingTypeDescription": "Laboratory", - "monday": false, - "room": "00206", - "saturday": false, - "startDate": "01/13/2020", - "sunday": false, - "term": "202003", - "thursday": false, - "tuesday": false, - "wednesday": true - }, - "term": "202003" - }, - { - "category": "01", - "class": "net.hedtech.banner.student.schedule.SectionSessionDecorator", - "courseReferenceNumber": "30078", - "faculty": [], - "meetingTime": { - "beginTime": "1230", - "building": "SERC", - "buildingDescription": "Science Ed and Research Ctr", - "campus": "MN", - "campusDescription": "Main", - "category": "01", - "class": "net.hedtech.banner.general.overall.MeetingTimeDecorator", - "courseReferenceNumber": "30078", - "creditHourSession": 4.0, - "endDate": "05/06/2020", - "endTime": "1350", - "friday": false, - "hoursWeek": 2.66, - "meetingScheduleType": "LL", - "meetingType": "LEC", - "meetingTypeDescription": "Lecture", - "monday": false, - "room": "00116", - "saturday": false, - "startDate": "01/13/2020", - "sunday": false, - "term": "202003", - "thursday": true, - "tuesday": true, - "wednesday": false - }, - "term": "202003" - } - ], - "reservedSeatSummary": null, - "sectionAttributes": [], - "bookstores": [ - { - "url": "https://prd-wlssb.temple.edu/prod8/szp_reg_bookstore.p_ShowBookStoreLink_LuC?term_in=202003&camp_in=MN&dept_in=CIS&crse_in=3207&sect_in=002", - "label": "View Course Materials" - } - ], - "feeAmount": null - }, - "output": { - "classTimes": [ - { - "building": "SERC", - "day": "W", - "endTime": 1150, - "roomNumber": "00206", - "startTime": 1000, - "type": "LAB" - }, - { - "building": "SERC", - "day": "T", - "endTime": 1350, - "roomNumber": "00116", - "startTime": 1230, - "type": "LEC" - }, - { - "building": "SERC", - "day": "R", - "endTime": 1350, - "roomNumber": "00116", - "startTime": 1230, - "type": "LEC" - } - ], - "courseName": "CIS 3207", - "crn": 30078, - "currentSeats": 19, - "currentWaitlist": 0, - "isOpen": true, - "professor": "Eugene Kwatny", - "section": 2, - "title": "Introduction to Systems Programming and Operating Systems", - "totalSeats": 30, - "totalWaitlist": 100, - "campus": "MN" - } - }, - { - "input": { - "id": 475368, - "term": "202003", - "termDesc": "2020 Spring", - "courseReferenceNumber": "1816", - "partOfTerm": "1", - "courseNumber": "4500", - "subject": "MUSC", - "subjectDescription": "Music", - "sequenceNumber": "001", - "campusDescription": "Main", - "scheduleTypeDescription": "Base Lecture", - "courseTitle": "Instrumental Ensemble", - "creditHours": null, - "maximumEnrollment": 150, - "enrollment": 86, - "seatsAvailable": 64, - "waitCapacity": 100, - "waitCount": 0, - "waitAvailable": 100, - "crossList": null, - "crossListCapacity": null, - "crossListCount": null, - "crossListAvailable": null, - "creditHourHigh": null, - "creditHourLow": 1, - "creditHourIndicator": null, - "openSection": true, - "linkIdentifier": null, - "isSectionLinked": false, - "subjectCourse": "MUSC4500", - "faculty": [ - { - "bannerId": "904549182", - "category": null, - "class": "net.hedtech.banner.student.faculty.FacultyResultDecorator", - "courseReferenceNumber": "1816", - "displayName": "Eric J. Schweingruber", - "emailAddress": "eschwein@temple.edu", - "primaryIndicator": true, - "term": "202003" - }, - { - "bannerId": "915313260", - "category": null, - "class": "net.hedtech.banner.student.faculty.FacultyResultDecorator", - "courseReferenceNumber": "1816", - "displayName": "Andreas Delfs", - "emailAddress": "tug29659@temple.edu", - "primaryIndicator": false, - "term": "202003" - } - ], - "meetingsFaculty": [ - { - "category": "01", - "class": "net.hedtech.banner.student.schedule.SectionSessionDecorator", - "courseReferenceNumber": "1816", - "faculty": [], - "meetingTime": { - "beginTime": null, - "building": null, - "buildingDescription": null, - "campus": null, - "campusDescription": null, - "category": "01", - "class": "net.hedtech.banner.general.overall.MeetingTimeDecorator", - "courseReferenceNumber": "1816", - "creditHourSession": 0.0, - "endDate": "05/06/2020", - "endTime": null, - "friday": false, - "hoursWeek": 1.0, - "meetingScheduleType": "BAS", - "meetingType": "CLAS", - "meetingTypeDescription": "Class", - "monday": false, - "room": null, - "saturday": false, - "startDate": "01/13/2020", - "sunday": false, - "term": "202003", - "thursday": false, - "tuesday": false, - "wednesday": false - }, - "term": "202003" - } - ], - "reservedSeatSummary": null, - "sectionAttributes": [], - "bookstores": [ - { - "url": "https://prd-wlssb.temple.edu/prod8/szp_reg_bookstore.p_ShowBookStoreLink_LuC?term_in=202003&camp_in=MN&dept_in=MUSC&crse_in=4500&sect_in=001", - "label": "View Course Materials" - } - ], - "feeAmount": "$100.00" - }, - "output": { - "classTimes": [], - "courseName": "MUSC 4500", - "crn": 1816, - "currentSeats": 86, - "currentWaitlist": 0, - "isOpen": true, - "professor": "Eric J. Schweingruber", - "section": 1, - "title": "Instrumental Ensemble", - "totalSeats": 150, - "totalWaitlist": 100, - "campus": null - } - } -] \ No newline at end of file diff --git a/lambda/test/scheduler.js b/lambda/test/scheduler.js new file mode 100644 index 0000000..a29daaf --- /dev/null +++ b/lambda/test/scheduler.js @@ -0,0 +1,12 @@ +'use strict'; + +var assert = require('assert'); +var Scheduler = require('scheduler'); + +describe('#Scheduler', function(){ + var scheduler = new Scheduler(); + + it('Should not allow time conflicts', function(){ + + }); +}); \ No newline at end of file diff --git a/lambda/update-delegate/cache.js b/lambda/update-delegate/cache.js new file mode 100644 index 0000000..35ec417 --- /dev/null +++ b/lambda/update-delegate/cache.js @@ -0,0 +1,25 @@ +'use strict'; + +/** + * @module Cache + * Controls the state of global objects representing connections to AWS services that can be reused throughout invokations. + * If the variable does not exist in the namespace, it is instantiated and then reused upon subsequent executions in the same container. + */ +module.exports = function(){ + + if (!banner){ + var Banner = require('banner'); + var banner = new Banner(process.env.TERM); + } + + if (!lambda){ + var AWS = require('aws-sdk'); + var lambda = new AWS.Lambda(); + } + + return { + Banner: banner, + Lambda: lambda + } + +}(); \ No newline at end of file diff --git a/lambda/update-delegate/index.js b/lambda/update-delegate/index.js new file mode 100644 index 0000000..1efddc1 --- /dev/null +++ b/lambda/update-delegate/index.js @@ -0,0 +1,38 @@ +'use strict'; + +if (!cache){ + var cache = require('./cache'); +} + +exports.handler = async (event, context) => { + const banner = cache.Banner; + try { + var subjects = await banner.getSubjects(); + await Promise.all(subjects.map(subject => delegate(subject.code))); + } catch (error) { + console.log(`Failed to fetch subjects from Banner: ${error}`); + } +} + +/** + * @async + * @function delegate - Invokes the worker lambda to process process the given subject + * @param {string} subject + */ +async function delegate(subject){ + const lambda = cache.Lambda; + const params = { + 'FunctionName': process.env.FUNCTION_NAME, + 'InvocationType': 'Event', + 'Payload': JSON.stringify({ + 'subject': subject + }) + }; + try { + //invoke worker lambda + console.log(`Invoking worker for ${subject}`); + return await lambda.invoke(params).promise(); + } catch (error) { + console.log(`Failed to invoke worker Lambda for ${subject}: ${error}`); + } +} \ No newline at end of file diff --git a/lambda/update-delegate/upload.sh b/lambda/update-delegate/upload.sh new file mode 100755 index 0000000..e961a24 --- /dev/null +++ b/lambda/update-delegate/upload.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +zip -u function.zip index.js cache.js +cd ../ +zip -u update-delegate/function.zip node_modules/banner/* +cd update-delegate +aws lambda update-function-code --function-name update_delegate --zip-file fileb://function.zip \ No newline at end of file diff --git a/lambda/update-worker/cache.js b/lambda/update-worker/cache.js new file mode 100644 index 0000000..7ae94c2 --- /dev/null +++ b/lambda/update-worker/cache.js @@ -0,0 +1,30 @@ +'use strict'; + +/** + * @module Cache + * Controls the state of global objects representing connections to AWS services that can be reused throughout invokations. + * If the variable does not exist in the namespace, it is instantiated and then reused upon subsequent executions in the same container. + */ +module.exports = function(){ + + if (!documentclient){ + var AWS = require('aws-sdk'); + var documentclient = new AWS.DynamoDB.DocumentClient(); + } + + if (!banner){ + var Banner = require('banner'); + var banner = new Banner(process.env.TERM); + } + + if (!conversions){ + var conversions = require('conversions'); + } + + return { + DocumentClient: documentclient, + Banner: banner, + BannerToDB: conversions.BannerToDB + } + +}(); \ No newline at end of file diff --git a/lambda/update-worker/index.js b/lambda/update-worker/index.js new file mode 100644 index 0000000..264ff1d --- /dev/null +++ b/lambda/update-worker/index.js @@ -0,0 +1,44 @@ +'use strict'; + +if (!cache){ + var cache = require('./cache'); +} + +exports.handler = async (event, context) => { + const banner = cache.Banner; + const BannerToDB = cache.BannerToDB; + + let subject = event.subject; + console.log(`Received ${subject}`); + let sections = await banner.classSearch(subject); + sections = BannerToDB(sections); + try { + await writeSections(sections); + } catch (error) { + console.log(`Did not successfully write all sections to database: ${error}`); + } +} + +async function writeSections(sections){ + const docClient = cache.DocumentClient; + let requests = sections.map(section => { + return { + 'PutRequest': { + 'Item': section + } + } + }); + let arrs = []; + while(requests.length > 0){ + arrs.push(requests.splice(0, 25)); + } + let pendingWrites = arrs.map(arr => { + return { + 'RequestItems': { + [process.env.TABLENAME]: arr + } + } + }); + + return Promise.all(pendingWrites.map(params => docClient.batchWrite(params).promise())); +} \ No newline at end of file diff --git a/lambda/update-worker/upload.sh b/lambda/update-worker/upload.sh new file mode 100755 index 0000000..3b11f4a --- /dev/null +++ b/lambda/update-worker/upload.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +zip -u function.zip index.js cache.js +cd ../ +zip -u update-worker/function.zip node_modules/conversions/* node_modules/banner/* +cd update-worker +aws lambda update-function-code --function-name update_worker --zip-file fileb://function.zip \ No newline at end of file diff --git a/linter.sh b/linter.sh new file mode 100755 index 0000000..3d0fa79 --- /dev/null +++ b/linter.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +directories="hello-world/ lambda/ s3/ templates/" + +for directory in $directories; do + for file in $(find $directory -name '*.js'); do + jshint $file + done +done diff --git a/s3/classes.json b/s3/classes.json new file mode 100644 index 0000000..2fd5173 --- /dev/null +++ b/s3/classes.json @@ -0,0 +1,50474 @@ +[ + { + "name": "ACCT 2101", + "title": "Financial Accounting" + }, + { + "name": "ACCT 2102", + "title": "Managerial Accounting" + }, + { + "name": "ACCT 2501", + "title": "Survey of Accounting" + }, + { + "name": "ACCT 2521", + "title": "Cost Accounting" + }, + { + "name": "ACCT 2901", + "title": "Honors Financial Accounting" + }, + { + "name": "ACCT 2902", + "title": "Honors Managerial Accounting" + }, + { + "name": "ACCT 3511", + "title": "Intermediate Accounting I" + }, + { + "name": "ACCT 3512", + "title": "Intermediate Accounting II" + }, + { + "name": "ACCT 3526", + "title": "Accounting Information Systems" + }, + { + "name": "ACCT 3531", + "title": "Federal Taxes on Income" + }, + { + "name": "ACCT 3533", + "title": "Advanced Accounting" + }, + { + "name": "ACCT 3561", + "title": "International Accounting" + }, + { + "name": "ACCT 3580", + "title": "Special Topics - Accounting" + }, + { + "name": "ACCT 3581", + "title": "Co-operative Experience in Accounting" + }, + { + "name": "ACCT 3582", + "title": "Independent Study" + }, + { + "name": "ACCT 3596", + "title": "Auditing" + }, + { + "name": "ACCT 3911", + "title": "Honors Intermediate Accounting I" + }, + { + "name": "ACCT 3999", + "title": "Honors Thesis I" + }, + { + "name": "ACCT 4501", + "title": "Accounting Senior Seminar" + }, + { + "name": "ACCT 4502", + "title": "Senior Seminar - Management Accounting" + }, + { + "name": "ACCT 4999", + "title": "Honors Senior Thesis II" + }, + { + "name": "ACCT 5001", + "title": "Accounting for Managerial and Investment Analysis and Planning" + }, + { + "name": "ACCT 5003", + "title": "Financial Accounting" + }, + { + "name": "ACCT 5004", + "title": "Managerial Decision Making Using Accounting Information" + }, + { + "name": "ACCT 5101", + "title": "Financial Accounting Theory" + }, + { + "name": "ACCT 5102", + "title": "Advanced Financial Accounting" + }, + { + "name": "ACCT 5107", + "title": "Accounting for Third Party Reimbursements" + }, + { + "name": "ACCT 5108", + "title": "Acct in an ERP Environment" + }, + { + "name": "ACCT 5111", + "title": "Concepts and Analysis of Financial Statements" + }, + { + "name": "ACCT 5112", + "title": "Federal Taxation" + }, + { + "name": "ACCT 5121", + "title": "Managerial Cost Accounting" + }, + { + "name": "ACCT 5123", + "title": "Auditing Theory and Practice" + }, + { + "name": "ACCT 5125", + "title": "Accounting Information Systems for Management" + }, + { + "name": "ACCT 5126", + "title": "Strat Use Equity Comp" + }, + { + "name": "ACCT 5127", + "title": "International Financial Reporting Standards (IFRS)" + }, + { + "name": "ACCT 5170", + "title": "Special Topics" + }, + { + "name": "ACCT 5180", + "title": "Special Topics" + }, + { + "name": "ACCT 5182", + "title": "Independent Study" + }, + { + "name": "ACCT 5190", + "title": "Special Topics - Accounting" + }, + { + "name": "ACCT 5201", + "title": "Advanced Studies in Financial Reporting" + }, + { + "name": "ACCT 5202", + "title": "Enterprise Systems and Internal Controls" + }, + { + "name": "ACCT 5203", + "title": "Professional Skills Development" + }, + { + "name": "ACCT 5204", + "title": "Advanced Auditing and Assurance Services" + }, + { + "name": "ACCT 5205", + "title": "Advanced Federal Taxation" + }, + { + "name": "ACCT 5206", + "title": "Law Ethics & Regulations" + }, + { + "name": "ACCT 5207", + "title": "Concepts and Analysis of Financial Statements" + }, + { + "name": "ACCT 5208", + "title": "Strategic Technology and Performance Management" + }, + { + "name": "ACCT 5209", + "title": "Taxes & Business Strategy" + }, + { + "name": "ACCT 5282", + "title": "Independent Study" + }, + { + "name": "ACCT 5287", + "title": "Colloquium on Current Issues in Accounting Practice" + }, + { + "name": "ACCT 5801", + "title": "Fin Info Reporting & Analysis" + }, + { + "name": "ACCT 5802", + "title": "Strategic Cost Analysis for EnterpriseManagement" + }, + { + "name": "ACCT 5882", + "title": "Independent Study" + }, + { + "name": "ACCT 5890", + "title": "Special Topics" + }, + { + "name": "ACCT 9001", + "title": "Interdisciplinary Accounting Research" + }, + { + "name": "ACCT 9002", + "title": "Seminar in Financial Accounting Theory" + }, + { + "name": "ACCT 9003", + "title": "Seminar in Research Methods - Accounting" + }, + { + "name": "ACCT 9011", + "title": "Proseminar in Accounting" + }, + { + "name": "ACCT 9090", + "title": "Seminar - Special Topics in Accounting" + }, + { + "name": "ACCT 9183", + "title": "Directed Study in Accounting" + }, + { + "name": "ACCT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ACCT 2101", + "title": "Financial Accounting" + }, + { + "name": "ACCT 2102", + "title": "Managerial Accounting" + }, + { + "name": "ACCT 2501", + "title": "Survey of Accounting" + }, + { + "name": "ACCT 2521", + "title": "Cost Accounting" + }, + { + "name": "ACCT 2901", + "title": "Honors Financial Accounting" + }, + { + "name": "ACCT 2902", + "title": "Honors Managerial Accounting" + }, + { + "name": "ACCT 3511", + "title": "Intermediate Accounting I" + }, + { + "name": "ACCT 3512", + "title": "Intermediate Accounting II" + }, + { + "name": "ACCT 3526", + "title": "Accounting Information Systems" + }, + { + "name": "ACCT 3531", + "title": "Federal Taxes on Income" + }, + { + "name": "ACCT 3533", + "title": "Advanced Accounting" + }, + { + "name": "ACCT 3561", + "title": "International Accounting" + }, + { + "name": "ACCT 3580", + "title": "Special Topics - Accounting" + }, + { + "name": "ACCT 3581", + "title": "Co-operative Experience in Accounting" + }, + { + "name": "ACCT 3582", + "title": "Independent Study" + }, + { + "name": "ACCT 3596", + "title": "Auditing" + }, + { + "name": "ACCT 3911", + "title": "Honors Intermediate Accounting I" + }, + { + "name": "ACCT 3999", + "title": "Honors Thesis I" + }, + { + "name": "ACCT 4501", + "title": "Accounting Senior Seminar" + }, + { + "name": "ACCT 4502", + "title": "Senior Seminar - Management Accounting" + }, + { + "name": "ACCT 4999", + "title": "Honors Senior Thesis II" + }, + { + "name": "ACCT 5001", + "title": "Accounting for Managerial and Investment Analysis and Planning" + }, + { + "name": "ACCT 5003", + "title": "Financial Accounting" + }, + { + "name": "ACCT 5004", + "title": "Managerial Decision Making Using Accounting Information" + }, + { + "name": "ACCT 5101", + "title": "Financial Accounting Theory" + }, + { + "name": "ACCT 5102", + "title": "Advanced Financial Accounting" + }, + { + "name": "ACCT 5107", + "title": "Accounting for Third Party Reimbursements" + }, + { + "name": "ACCT 5108", + "title": "Acct in an ERP Environment" + }, + { + "name": "ACCT 5111", + "title": "Concepts and Analysis of Financial Statements" + }, + { + "name": "ACCT 5112", + "title": "Federal Taxation" + }, + { + "name": "ACCT 5121", + "title": "Managerial Cost Accounting" + }, + { + "name": "ACCT 5123", + "title": "Auditing Theory and Practice" + }, + { + "name": "ACCT 5125", + "title": "Accounting Information Systems for Management" + }, + { + "name": "ACCT 5126", + "title": "Strat Use Equity Comp" + }, + { + "name": "ACCT 5127", + "title": "International Financial Reporting Standards (IFRS)" + }, + { + "name": "ACCT 5170", + "title": "Special Topics" + }, + { + "name": "ACCT 5180", + "title": "Special Topics" + }, + { + "name": "ACCT 5182", + "title": "Independent Study" + }, + { + "name": "ACCT 5190", + "title": "Special Topics - Accounting" + }, + { + "name": "ACCT 5201", + "title": "Advanced Studies in Financial Reporting" + }, + { + "name": "ACCT 5202", + "title": "Enterprise Systems and Internal Controls" + }, + { + "name": "ACCT 5203", + "title": "Professional Skills Development" + }, + { + "name": "ACCT 5204", + "title": "Advanced Auditing and Assurance Services" + }, + { + "name": "ACCT 5205", + "title": "Advanced Federal Taxation" + }, + { + "name": "ACCT 5206", + "title": "Law Ethics & Regulations" + }, + { + "name": "ACCT 5207", + "title": "Concepts and Analysis of Financial Statements" + }, + { + "name": "ACCT 5208", + "title": "Strategic Technology and Performance Management" + }, + { + "name": "ACCT 5209", + "title": "Taxes & Business Strategy" + }, + { + "name": "ACCT 5282", + "title": "Independent Study" + }, + { + "name": "ACCT 5287", + "title": "Colloquium on Current Issues in Accounting Practice" + }, + { + "name": "ACCT 5801", + "title": "Fin Info Reporting & Analysis" + }, + { + "name": "ACCT 5802", + "title": "Strategic Cost Analysis for EnterpriseManagement" + }, + { + "name": "ACCT 5882", + "title": "Independent Study" + }, + { + "name": "ACCT 5890", + "title": "Special Topics" + }, + { + "name": "ACCT 9001", + "title": "Interdisciplinary Accounting Research" + }, + { + "name": "ACCT 9002", + "title": "Seminar in Financial Accounting Theory" + }, + { + "name": "ACCT 9003", + "title": "Seminar in Research Methods - Accounting" + }, + { + "name": "ACCT 9011", + "title": "Proseminar in Accounting" + }, + { + "name": "ACCT 9090", + "title": "Seminar - Special Topics in Accounting" + }, + { + "name": "ACCT 9183", + "title": "Directed Study in Accounting" + }, + { + "name": "ACCT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "AOD 0836", + "title": "Interpersonal Communication: Critical Competencies for Professional and Personal Success" + }, + { + "name": "AOD 1001", + "title": "Practical Application in Adult and Organizational Development" + }, + { + "name": "AOD 1016", + "title": "Introduction to Adult Learning and Training" + }, + { + "name": "AOD 1166", + "title": "Interpersonal Communication through the Life Span" + }, + { + "name": "AOD 2115", + "title": "Conflict Resolution in Education" + }, + { + "name": "AOD 2117", + "title": "Nonverbal Communication" + }, + { + "name": "AOD 2176", + "title": "Team Process in Education" + }, + { + "name": "AOD 2201", + "title": "Research Methods in Applied Communication" + }, + { + "name": "AOD 2214", + "title": "Conflict and Communication" + }, + { + "name": "AOD 2215", + "title": "Mediation: Principles and Practice" + }, + { + "name": "AOD 2218", + "title": "Leadership and Communication" + }, + { + "name": "AOD 2307", + "title": "Interaction Analysis" + }, + { + "name": "AOD 2900", + "title": "Honors Special Topics" + }, + { + "name": "AOD 2915", + "title": "Honors Mediation: Principles and Practice" + }, + { + "name": "AOD 3316", + "title": "Negotiation Processes" + }, + { + "name": "AOD 3317", + "title": "Adult and Workforce Development" + }, + { + "name": "AOD 3318", + "title": "Systems Approach to Organizational Change" + }, + { + "name": "AOD 3319", + "title": "Skill Building for Social Entrepreneurship and Community Engagement" + }, + { + "name": "AOD 3376", + "title": "Facilitating Group Decision-Making" + }, + { + "name": "AOD 3396", + "title": "Organizational Communication" + }, + { + "name": "AOD 4016", + "title": "Advanced Adult Learning and Training" + }, + { + "name": "AOD 4376", + "title": "Innovation and Mission-Driven Organizations" + }, + { + "name": "AOD 4382", + "title": "Independent Study" + }, + { + "name": "AOD 4385", + "title": "Internship in AOD/Applied Communication" + }, + { + "name": "AOD 4396", + "title": "Field Research: Practice in Professional Settings" + }, + { + "name": "AOD 5401", + "title": "System Dynamics" + }, + { + "name": "AOD 5402", + "title": "Communication and Conflict" + }, + { + "name": "AOD 5403", + "title": "Facilitating Adult Learning" + }, + { + "name": "AOD 5404", + "title": "Organizational Communication" + }, + { + "name": "AOD 5515", + "title": "Conflict Resolution in Education" + }, + { + "name": "AOD 5516", + "title": "Negotiation Processes" + }, + { + "name": "AOD 5518", + "title": "Third-Party Conflict Intervention" + }, + { + "name": "AOD 5522", + "title": "Interpersonal Skills Training" + }, + { + "name": "AOD 5524", + "title": "Sociocultural Dynamics" + }, + { + "name": "AOD 5527", + "title": "Training Design and Delivery" + }, + { + "name": "AOD 5532", + "title": "Leadership and Management" + }, + { + "name": "AOD 5533", + "title": "Team Development" + }, + { + "name": "AOD 5534", + "title": "Group Facilitation and Consultation" + }, + { + "name": "AOD 5535", + "title": "Organizational Assessment, Design and Strategy" + }, + { + "name": "AOD 5540", + "title": "Current Topics in AOD" + }, + { + "name": "AOD 8101", + "title": "Training and Organizational Development: Theory and Research" + }, + { + "name": "AOD 9187", + "title": "Practicum in Adult and Organizational Development" + }, + { + "name": "AOD 9231", + "title": "Proseminar in AOD" + }, + { + "name": "AOD E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ACMS 4004", + "title": "Fundamentals of Physiology" + }, + { + "name": "ACMS 4005", + "title": "Fundamentals of Physiology Lab" + }, + { + "name": "ACMS 4006", + "title": "Cellular and Molecular Basis of Immunology and Microbiology" + }, + { + "name": "ACMS 5003", + "title": "Fundamentals of Biochemistry" + }, + { + "name": "ACMS 5004", + "title": "Fundamentals of Physiology" + }, + { + "name": "ACMS 5006", + "title": "Microbiology and Immunology" + }, + { + "name": "ACMS 5007", + "title": "Human Anatomy" + }, + { + "name": "ACMS 5008", + "title": "Medical Pharmacology" + }, + { + "name": "ACMS 5010", + "title": "Special Topics in Medicine" + }, + { + "name": "ACMS 5011", + "title": "Case-based Clinical Problem Solving" + }, + { + "name": "ADV 0853", + "title": "Advertising and Globalization" + }, + { + "name": "ADV 0953", + "title": "Honors Advertising and Globalization" + }, + { + "name": "ADV 1000", + "title": "Topics in Advertising 1" + }, + { + "name": "ADV 1001", + "title": "Introduction to Digital Design Tools for Advertising" + }, + { + "name": "ADV 1005", + "title": "Introduction to Computer Graphics for Advertising" + }, + { + "name": "ADV 1010", + "title": "Topics in Advertising 10" + }, + { + "name": "ADV 1101", + "title": "Introduction to Media and Society" + }, + { + "name": "ADV 1102", + "title": "Introduction to Advertising" + }, + { + "name": "ADV 1103", + "title": "Digital Media and Advertising" + }, + { + "name": "ADV 1196", + "title": "Persuasive Writing" + }, + { + "name": "ADV 1901", + "title": "Honors Media and Society" + }, + { + "name": "ADV 2000", + "title": "Topics in Advertising 2000" + }, + { + "name": "ADV 2001", + "title": "Intermediate Digital Design Tools for Advertising" + }, + { + "name": "ADV 2002", + "title": "Search Engine Optimization" + }, + { + "name": "ADV 2005", + "title": "Social Media Marketing" + }, + { + "name": "ADV 2010", + "title": "Topics in Advertising 2010" + }, + { + "name": "ADV 2052", + "title": "Introduction to Typography" + }, + { + "name": "ADV 2057", + "title": "Creating and Filming Advertising from Script to Screen" + }, + { + "name": "ADV 2102", + "title": "Introduction to Pharmaceutical Advertising" + }, + { + "name": "ADV 2103", + "title": "Introduction to Web Design and Development for Advertising" + }, + { + "name": "ADV 2104", + "title": "Personal Branding" + }, + { + "name": "ADV 2111", + "title": "Introduction to Marketing" + }, + { + "name": "ADV 2121", + "title": "Introduction to Copywriting" + }, + { + "name": "ADV 2131", + "title": "Introduction to Media Planning" + }, + { + "name": "ADV 2141", + "title": "Introduction to Brand Strategy and Research" + }, + { + "name": "ADV 2151", + "title": "Introduction to Art Direction: Visual Communication" + }, + { + "name": "ADV 3000", + "title": "Topics in Advertising 3000" + }, + { + "name": "ADV 3001", + "title": "Advanced Digital Design Tools" + }, + { + "name": "ADV 3002", + "title": "Advertising and Society" + }, + { + "name": "ADV 3003", + "title": "National Student Advertising Competition Preparation" + }, + { + "name": "ADV 3004", + "title": "Klein Online Marketing Challenge" + }, + { + "name": "ADV 3006", + "title": "Representation in the Media" + }, + { + "name": "ADV 3007", + "title": "Psychology of Advertising" + }, + { + "name": "ADV 3008", + "title": "Television Promotion: On-Air, Online, On Social" + }, + { + "name": "ADV 3009", + "title": "ECHO Competition" + }, + { + "name": "ADV 3010", + "title": "Topics in Advertising 30" + }, + { + "name": "ADV 3011", + "title": "Data Visualization and Advertising" + }, + { + "name": "ADV 3012", + "title": "Legal and Moral Issues in Advertising" + }, + { + "name": "ADV 3013", + "title": "The User Experience" + }, + { + "name": "ADV 3022", + "title": "Copywriting for Print and Web" + }, + { + "name": "ADV 3023", + "title": "Copywriting for Radio, TV and Video" + }, + { + "name": "ADV 3030", + "title": "Innovations in Advertising Tech" + }, + { + "name": "ADV 3031", + "title": "Digital Analytics and Reporting" + }, + { + "name": "ADV 3033", + "title": "Advertising Sales" + }, + { + "name": "ADV 3042", + "title": "Quantitative Advertising Research" + }, + { + "name": "ADV 3043", + "title": "Qualitative Advertising Research" + }, + { + "name": "ADV 3050", + "title": "Advanced Topics in Art Direction" + }, + { + "name": "ADV 3052", + "title": "Art Direction I: Concept & Layout" + }, + { + "name": "ADV 3053", + "title": "Art Direction II: Narrative and Multimedia" + }, + { + "name": "ADV 3082", + "title": "Special Projects" + }, + { + "name": "ADV 3101", + "title": "Creative Thinking for Advertising" + }, + { + "name": "ADV 3171", + "title": "Diamond Edge Communication" + }, + { + "name": "ADV 3185", + "title": "Advertising Internship" + }, + { + "name": "ADV 3900", + "title": "Honors Special Topics" + }, + { + "name": "ADV 4034", + "title": "Account Management" + }, + { + "name": "ADV 4044", + "title": "Account Planning" + }, + { + "name": "ADV 4054", + "title": "Advanced Media Planning" + }, + { + "name": "ADV 4064", + "title": "Advertising Portfolio" + }, + { + "name": "ADV 4102", + "title": "Advertising Campaigns" + }, + { + "name": "ADV 4103", + "title": "National Student Advertising Competition" + }, + { + "name": "ADV 4196", + "title": "Morality, Law and Advertising" + }, + { + "name": "ADV 4197", + "title": "Advanced Writing for Academic and Professional Communication" + }, + { + "name": "ADV 4571", + "title": "International Studies in Media and Communication" + }, + { + "name": "ADV 4882", + "title": "Independent Study" + }, + { + "name": "ADV 5501", + "title": "Advertising Research and Strategy" + }, + { + "name": "ADV 5502", + "title": "Media Planning and Analysis" + }, + { + "name": "ADV 5503", + "title": "Persuasion and the Marketplace" + }, + { + "name": "ADV 5504", + "title": "Visual Communication and Branding" + }, + { + "name": "ADV 5505", + "title": "User Experience Design and Strategy" + }, + { + "name": "ADV 9082", + "title": "Directed Projects" + }, + { + "name": "ADV 9083", + "title": "Directed Readings" + }, + { + "name": "ADV E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ADV T000", + "title": "Elective" + }, + { + "name": "AIRF 1011", + "title": "Foundations of the United States Air Force I" + }, + { + "name": "AIRF 1012", + "title": "Air Force Leadership Laboratory I" + }, + { + "name": "AIRF 1021", + "title": "The Foundation of the United States Air Force II" + }, + { + "name": "AIRF 1022", + "title": "Air Force Leadership Laboratory II" + }, + { + "name": "AIRF 2031", + "title": "The Evolution of U.S. Aerospace Power I" + }, + { + "name": "AIRF 2041", + "title": "The Evolution of U.S. Aerospace Power II" + }, + { + "name": "AIRF 3011", + "title": "Air Force Leadership Studies I" + }, + { + "name": "AIRF 3021", + "title": "Air Force Leadership Studies II" + }, + { + "name": "AIRF 4031", + "title": "National Security Affairs I" + }, + { + "name": "AIRF 4041", + "title": "National Security Affairs II" + }, + { + "name": "AAAS 0829", + "title": "The History & Significance of Race in America" + }, + { + "name": "AAAS 0834", + "title": "Representing Race" + }, + { + "name": "AAAS 0857", + "title": "Sport & Leisure in American Society" + }, + { + "name": "AAAS 1124", + "title": "Elementary Yoruba" + }, + { + "name": "AAAS 1125", + "title": "Elementary Hausa" + }, + { + "name": "AAAS 1152", + "title": "Introduction to African Aesthetics" + }, + { + "name": "AAAS 1253", + "title": "Blacks in World History" + }, + { + "name": "AAAS 1261", + "title": "Africa in the 20th Century" + }, + { + "name": "AAAS 1268", + "title": "African American History Since 1900" + }, + { + "name": "AAAS 1271", + "title": "Urban Black Politics" + }, + { + "name": "AAAS 1500", + "title": "Special Topics" + }, + { + "name": "AAAS 1968", + "title": "Honors Africa in the 20th Century" + }, + { + "name": "AAAS 2044", + "title": "The Black Church" + }, + { + "name": "AAAS 2058", + "title": "African American Music I" + }, + { + "name": "AAAS 2100", + "title": "Special Topics" + }, + { + "name": "AAAS 2111", + "title": "Tupac Shakur and the Hip Hop Revolution" + }, + { + "name": "AAAS 2131", + "title": "Creative Writing Workshop" + }, + { + "name": "AAAS 2133", + "title": "The African American Lesbian, Gay, Bisexual, Transgender Experience" + }, + { + "name": "AAAS 2134", + "title": "The Literature of American Slavery" + }, + { + "name": "AAAS 2142", + "title": "The Black Male Experience" + }, + { + "name": "AAAS 2151", + "title": "History of Blacks in Cinema" + }, + { + "name": "AAAS 2165", + "title": "History and Culture of the Caribbean" + }, + { + "name": "AAAS 2168", + "title": "African Americans in Sports" + }, + { + "name": "AAAS 2175", + "title": "Hip Hop and Black Culture" + }, + { + "name": "AAAS 2200", + "title": "Topics in African-American Studies" + }, + { + "name": "AAAS 2201", + "title": "African Civilization" + }, + { + "name": "AAAS 2205", + "title": "Black Politics in America" + }, + { + "name": "AAAS 2208", + "title": "Black Folklore: African and African-American" + }, + { + "name": "AAAS 2211", + "title": "African Politics" + }, + { + "name": "AAAS 2218", + "title": "Psychology of the African American Experience" + }, + { + "name": "AAAS 2242", + "title": "Afrocentricity" + }, + { + "name": "AAAS 2248", + "title": "Public Policy and the Black Community" + }, + { + "name": "AAAS 2251", + "title": "Mass Media and the Black Community" + }, + { + "name": "AAAS 2255", + "title": "Introduction to Research Methods" + }, + { + "name": "AAAS 2296", + "title": "Introduction to Africology" + }, + { + "name": "AAAS 2405", + "title": "Introduction to Afro-Jewish Studies" + }, + { + "name": "AAAS 2934", + "title": "Honors Literature of American Slavery" + }, + { + "name": "AAAS 3000", + "title": "Special Topics" + }, + { + "name": "AAAS 3010", + "title": "Special Topics in African Languages" + }, + { + "name": "AAAS 3176", + "title": "Contemporary Black Poets" + }, + { + "name": "AAAS 3205", + "title": "The Black Woman" + }, + { + "name": "AAAS 3215", + "title": "Languages and Cultures of West Africa" + }, + { + "name": "AAAS 3257", + "title": "Black Social and Political Thought" + }, + { + "name": "AAAS 3268", + "title": "Critical Readings in African American History" + }, + { + "name": "AAAS 3271", + "title": "History of Pan-African Thought" + }, + { + "name": "AAAS 3296", + "title": "The Black Family" + }, + { + "name": "AAAS 4000", + "title": "Special Topics" + }, + { + "name": "AAAS 4082", + "title": "Independent Study" + }, + { + "name": "AAAS 4091", + "title": "Junior/Senior Directed Research" + }, + { + "name": "AAAS 4096", + "title": "Senior Seminar" + }, + { + "name": "AAAS 4115", + "title": "Black Aesthetics" + }, + { + "name": "AAAS 4146", + "title": "Women Writers in Black Literature " + }, + { + "name": "AAAS 4161", + "title": "Studies in African-American Literature" + }, + { + "name": "AAAS 4221", + "title": "The Black Child: Development and Socialization" + }, + { + "name": "AAAS 4248", + "title": "Dimensions of Racism" + }, + { + "name": "AAAS 4389", + "title": "Seminar in Community Service" + }, + { + "name": "AAAS 5010", + "title": "Special Topics in African Languages" + }, + { + "name": "AAAS 8001", + "title": "Proseminar in Graduate Work in African American Studies " + }, + { + "name": "AAAS 8002", + "title": "African Civilizations" + }, + { + "name": "AAAS 8003", + "title": "Research Methods in African American Studies " + }, + { + "name": "AAAS 8004", + "title": "Theories and Methods in African American Studies" + }, + { + "name": "AAAS 8005", + "title": "African Literature" + }, + { + "name": "AAAS 8006", + "title": "African American Literature" + }, + { + "name": "AAAS 8007", + "title": "African Aesthetics" + }, + { + "name": "AAAS 8008", + "title": "Ethnographic Methods" + }, + { + "name": "AAAS 8009", + "title": "The Afrocentric Paradigm" + }, + { + "name": "AAAS 8415", + "title": "Ancient Egyptian Language I" + }, + { + "name": "AAAS 8416", + "title": "Ancient Egyptian Language II" + }, + { + "name": "AAAS 8432", + "title": "African-American Family" + }, + { + "name": "AAAS 8435", + "title": "Ebonics: African American Language" + }, + { + "name": "AAAS 8441", + "title": "African Philosophical Thought" + }, + { + "name": "AAAS 8442", + "title": "African Religions" + }, + { + "name": "AAAS 8446", + "title": "Cheikh Anta Diop" + }, + { + "name": "AAAS 8449", + "title": "Pan Africanism" + }, + { + "name": "AAAS 8455", + "title": "Caribbean Culture and Politics" + }, + { + "name": "AAAS 8464", + "title": "Literature of the Harlem Renaissance " + }, + { + "name": "AAAS 8465", + "title": "Literature of the Black Power Revolution " + }, + { + "name": "AAAS 8468", + "title": "Major African Writers" + }, + { + "name": "AAAS 8521", + "title": "Readings in African History" + }, + { + "name": "AAAS 8542", + "title": "Readings in African American Social Thought" + }, + { + "name": "AAAS 8547", + "title": "Readings in 1960's Protests" + }, + { + "name": "AAAS 8561", + "title": "African American Theatre" + }, + { + "name": "AAAS 8566", + "title": "African American Music" + }, + { + "name": "AAAS 9001", + "title": "Seminar in African Aesthetics" + }, + { + "name": "AAAS 9002", + "title": "Teaching African American Studies" + }, + { + "name": "AAAS 9614", + "title": "African American Diaspora" + }, + { + "name": "AAAS 9615", + "title": "Seminar in African American Psychology" + }, + { + "name": "AAAS 9625", + "title": "Nile Valley Civilization" + }, + { + "name": "AAAS 9641", + "title": "Sem Life & Work Malcom X" + }, + { + "name": "AAAS 9642", + "title": "Seminar in African American Social Philosophy" + }, + { + "name": "AAAS 9643", + "title": "Research and Writings of W.E.B. DuBois" + }, + { + "name": "AAAS 9645", + "title": "Seminar in the African American Woman" + }, + { + "name": "AAAS 9662", + "title": "Seminar in the African American Novel" + }, + { + "name": "AAAS 9761", + "title": "Seminar in African American Studies: Social Behavior" + }, + { + "name": "AAAS 9982", + "title": "Individual Research in African American Studies" + }, + { + "name": "AAAS 9993", + "title": "Master's Comprehensive Examination" + }, + { + "name": "AAAS 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "AAAS 9996", + "title": "Master's Thesis" + }, + { + "name": "AAAS 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "AAAS 9999", + "title": "Dissertation Research" + }, + { + "name": "AAAS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "AAAS F000", + "title": "* See Statement Below" + }, + { + "name": "AAAS L000", + "title": "Elective LL" + }, + { + "name": "AAAS L001", + "title": "Elective LL" + }, + { + "name": "AAAS P000", + "title": "Elective P" + }, + { + "name": "AAAS U000", + "title": "Elective UL" + }, + { + "name": "AMST 0801", + "title": "Philadelphia Arts & Culture" + }, + { + "name": "AMST 0847", + "title": "American Military Culture" + }, + { + "name": "AMST 0848", + "title": "American Revolutions" + }, + { + "name": "AMST 0855", + "title": "Why care about College: Higher Education in American Life" + }, + { + "name": "AMST 0859", + "title": "The Making of American Society: Melting Pot or Culture Wars?" + }, + { + "name": "AMST 0862", + "title": "First Person America" + }, + { + "name": "AMST 0864", + "title": "Sounds of a Revolution" + }, + { + "name": "AMST 0901", + "title": "Honors: Philadelphia Arts and Culture" + }, + { + "name": "AMST 0962", + "title": "Honors: First Person America" + }, + { + "name": "AMST 0964", + "title": "Honors: Sounds of a Revolution" + }, + { + "name": "AMST 1001", + "title": "American Lives" + }, + { + "name": "AMST 1002", + "title": "Key Documents in American Culture Before World War I" + }, + { + "name": "AMST 1042", + "title": "Work in America" + }, + { + "name": "AMST 1701", + "title": "American Lives" + }, + { + "name": "AMST 1901", + "title": "Honors American Lives" + }, + { + "name": "AMST 2001", + "title": "Tourism in America" + }, + { + "name": "AMST 2003", + "title": "The American Sexual Past" + }, + { + "name": "AMST 2011", + "title": "The Arts in America" + }, + { + "name": "AMST 2012", + "title": "American Things: Introduction to Material Culture" + }, + { + "name": "AMST 2021", + "title": "Philadelphia Neighborhoods" + }, + { + "name": "AMST 2022", + "title": "Museums and American Culture" + }, + { + "name": "AMST 2031", + "title": "Radicalism in the United States" + }, + { + "name": "AMST 2032", + "title": "Critical Moments in the American Past" + }, + { + "name": "AMST 2041", + "title": "Technology and American Culture" + }, + { + "name": "AMST 2051", + "title": "American Places: Home, City, Region" + }, + { + "name": "AMST 2052", + "title": "The Class Experience in America" + }, + { + "name": "AMST 2061", + "title": "American Music" + }, + { + "name": "AMST 2062", + "title": "UFOs in American Society" + }, + { + "name": "AMST 2063", + "title": "American Culture Abroad: Japan" + }, + { + "name": "AMST 2064", + "title": "America in the 1950's" + }, + { + "name": "AMST 2065", + "title": "Global America" + }, + { + "name": "AMST 2071", + "title": "Immigrant Experiences in America" + }, + { + "name": "AMST 2072", + "title": "Puerto Ricans in Philadelphia" + }, + { + "name": "AMST 2096", + "title": "Asian Diaspora" + }, + { + "name": "AMST 2097", + "title": "Asian Women in Transition" + }, + { + "name": "AMST 2098", + "title": "Reading Culture" + }, + { + "name": "AMST 2107", + "title": "Asian American Experiences" + }, + { + "name": "AMST 2108", + "title": "Growing Up in America" + }, + { + "name": "AMST 2120", + "title": "Topics in American Culture" + }, + { + "name": "AMST 2217", + "title": "The Vietnam War" + }, + { + "name": "AMST 2742", + "title": "Work in America" + }, + { + "name": "AMST 2818", + "title": "American Icons" + }, + { + "name": "AMST 2900", + "title": "Honors Topics in American Culture" + }, + { + "name": "AMST 2901", + "title": "Honors Quest for the American Dream" + }, + { + "name": "AMST 2941", + "title": "Honors Technology and American Culture" + }, + { + "name": "AMST 2951", + "title": "Honors American Places: Home, City, Region" + }, + { + "name": "AMST 2964", + "title": "Honors America in the 1950s" + }, + { + "name": "AMST 3006", + "title": "The American Woman: Visions and Revisions" + }, + { + "name": "AMST 3011", + "title": "Photography in America" + }, + { + "name": "AMST 3012", + "title": "Film and American Society" + }, + { + "name": "AMST 3013", + "title": "The Documentary Mode" + }, + { + "name": "AMST 3014", + "title": "Retro America" + }, + { + "name": "AMST 3021", + "title": "Historic Preservation in Philadelphia" + }, + { + "name": "AMST 3022", + "title": "Architecture, Urban Design, and American Culture" + }, + { + "name": "AMST 3031", + "title": "Political Protest and Culture in the '60s" + }, + { + "name": "AMST 3032", + "title": "Literature and Political Change" + }, + { + "name": "AMST 3033", + "title": "Courtroom in American Society" + }, + { + "name": "AMST 3041", + "title": "Contemporary Trends in the American Workplace" + }, + { + "name": "AMST 3051", + "title": "American Frontiers" + }, + { + "name": "AMST 3061", + "title": "Media and American Popular Culture" + }, + { + "name": "AMST 3071", + "title": "African American Experiences" + }, + { + "name": "AMST 3073", + "title": "Class Roots Am Culture" + }, + { + "name": "AMST 3074", + "title": "Introduction to Asian American Literature" + }, + { + "name": "AMST 3075", + "title": "Literature of American Slavery" + }, + { + "name": "AMST 3082", + "title": "Independent Study" + }, + { + "name": "AMST 3089", + "title": "Field Work in American Studies" + }, + { + "name": "AMST 3101", + "title": "Latino Identity in the United States" + }, + { + "name": "AMST 3120", + "title": "Topics in American Culture" + }, + { + "name": "AMST 3901", + "title": "Honors Ideal America: Reform, Revolution, and Utopia" + }, + { + "name": "AMST 3931", + "title": "Honors Political Protest and Culture in the 60's" + }, + { + "name": "AMST 3951", + "title": "Honors American Frontiers" + }, + { + "name": "AMST 3972", + "title": "Honors The American Woman: Visions and Revisions" + }, + { + "name": "AMST 4097", + "title": "Senior Seminar in American Studies" + }, + { + "name": "AMST 4098", + "title": "Senior Independent Study" + }, + { + "name": "AMST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "AMST F000", + "title": "* See Statement Below" + }, + { + "name": "AMST L000", + "title": "Elective LL" + }, + { + "name": "AMST P000", + "title": "Elective P" + }, + { + "name": "AMST U000", + "title": "Elective UL" + }, + { + "name": "ANTH 0814", + "title": "Human Ecology" + }, + { + "name": "ANTH 0815", + "title": "Language in Society" + }, + { + "name": "ANTH 0817", + "title": "Youth Cultures" + }, + { + "name": "ANTH 0825", + "title": "Quantitative Methods in the Social Sciences" + }, + { + "name": "ANTH 0829", + "title": "The History & Significance of Race in America" + }, + { + "name": "ANTH 0831", + "title": "Immigration and the American Dream" + }, + { + "name": "ANTH 0833", + "title": "Race & Poverty in the Americas" + }, + { + "name": "ANTH 0834", + "title": "Representing Race" + }, + { + "name": "ANTH 0856", + "title": "Evolution of Culture" + }, + { + "name": "ANTH 0867", + "title": "World Regions and Cultures: Diversity and Interconnections" + }, + { + "name": "ANTH 0915", + "title": "Honors Language in Society" + }, + { + "name": "ANTH 0934", + "title": "Honors Representing Race" + }, + { + "name": "ANTH 1009", + "title": "Discovering Anthropology" + }, + { + "name": "ANTH 1055", + "title": "Introduction to Physical Anthropology" + }, + { + "name": "ANTH 1061", + "title": "Cultures of the World" + }, + { + "name": "ANTH 1062", + "title": "Introduction to Anthropology" + }, + { + "name": "ANTH 1064", + "title": "American Culture" + }, + { + "name": "ANTH 1065", + "title": "Origins of Cultural Diversity" + }, + { + "name": "ANTH 1074", + "title": "Anthropology through Film" + }, + { + "name": "ANTH 1079", + "title": "Anthropology of Food" + }, + { + "name": "ANTH 1261", + "title": "Cultures of the World" + }, + { + "name": "ANTH 1262", + "title": "Introduction to Anthropology" + }, + { + "name": "ANTH 1961", + "title": "Honors Cultures of the World" + }, + { + "name": "ANTH 2022", + "title": "Museums and American Culture" + }, + { + "name": "ANTH 2087", + "title": "Practicum in Curation and Collections Management" + }, + { + "name": "ANTH 2098", + "title": "The Legacy of Mesoamerica" + }, + { + "name": "ANTH 2102", + "title": "Frauds, Myths, and Pseudoscience in Archaeology" + }, + { + "name": "ANTH 2104", + "title": "Fundamentals of Archaeology" + }, + { + "name": "ANTH 2169", + "title": "South American Archaeology" + }, + { + "name": "ANTH 2171", + "title": "First Century Pompeii & the Mediterranean World: Archaeological & Anthropological Perspectives" + }, + { + "name": "ANTH 2172", + "title": "Archaeology of North America" + }, + { + "name": "ANTH 2173", + "title": "Ancient Mesoamerica" + }, + { + "name": "ANTH 2227", + "title": "Popular Culture in Modern Italy" + }, + { + "name": "ANTH 2238", + "title": "Visual Anthropology of Modern Japan" + }, + { + "name": "ANTH 2310", + "title": "Topics in Cultural Anthropology" + }, + { + "name": "ANTH 2319", + "title": "Anthropology of Food" + }, + { + "name": "ANTH 2322", + "title": "Outlaws, Law and Culture" + }, + { + "name": "ANTH 2332", + "title": "Medical Anthropology" + }, + { + "name": "ANTH 2358", + "title": "Anthropology of American Culture" + }, + { + "name": "ANTH 2361", + "title": "Peoples of Latin America" + }, + { + "name": "ANTH 2362", + "title": "Peoples and Cultures of the Caribbean" + }, + { + "name": "ANTH 2364", + "title": "People and Culture of the Middle East" + }, + { + "name": "ANTH 2366", + "title": "Urban America: An Anthropological Perspective" + }, + { + "name": "ANTH 2367", + "title": "Peoples of South Asia" + }, + { + "name": "ANTH 2368", + "title": "Peoples of the Pacific" + }, + { + "name": "ANTH 2373", + "title": "Japanese Culture" + }, + { + "name": "ANTH 2374", + "title": "The Anthropology of Modern China" + }, + { + "name": "ANTH 2396", + "title": "Fundamentals of Cultural Anthropology" + }, + { + "name": "ANTH 2408", + "title": "Fundamentals of the Anthropology of Visual Communication" + }, + { + "name": "ANTH 2409", + "title": "Introduction to the Production of Anthropological Media" + }, + { + "name": "ANTH 2432", + "title": "Indigenous Media" + }, + { + "name": "ANTH 2434", + "title": "Anthropology of Feature Films" + }, + { + "name": "ANTH 2501", + "title": "Language, Power, & Identity" + }, + { + "name": "ANTH 2507", + "title": "Fundamentals of Linguistic Anthropology" + }, + { + "name": "ANTH 2525", + "title": "Maya Language and Culture" + }, + { + "name": "ANTH 2536", + "title": "Language in the City" + }, + { + "name": "ANTH 2705", + "title": "Fundamentals of Biological Anthropology" + }, + { + "name": "ANTH 2763", + "title": "Human Population Genetics" + }, + { + "name": "ANTH 2764", + "title": "Primate Behavior" + }, + { + "name": "ANTH 2765", + "title": "Human Osteology" + }, + { + "name": "ANTH 2801", + "title": "Grant Writing in the Social and Health Sciences" + }, + { + "name": "ANTH 2907", + "title": "Honors Fundamentals of Linguistic Anthropology" + }, + { + "name": "ANTH 3170", + "title": "Methods in Archaeology" + }, + { + "name": "ANTH 3171", + "title": "Comparative Early Civilizations" + }, + { + "name": "ANTH 3172", + "title": "Seminar in Northeastern Prehistory" + }, + { + "name": "ANTH 3175", + "title": "Heritage Management in Archaeology" + }, + { + "name": "ANTH 3177", + "title": "Approaches to Historical Sites in Archaeology" + }, + { + "name": "ANTH 3180", + "title": "Topics in Archaeology" + }, + { + "name": "ANTH 3189", + "title": "Field Session in Archaeology" + }, + { + "name": "ANTH 3301", + "title": "History of Anthropological Theory" + }, + { + "name": "ANTH 3321", + "title": "Folklore and Culture" + }, + { + "name": "ANTH 3322", + "title": "Anthropology of the Global Economy" + }, + { + "name": "ANTH 3324", + "title": "Anthropology and Art" + }, + { + "name": "ANTH 3325", + "title": "Political Anthropology" + }, + { + "name": "ANTH 3326", + "title": "Religion in Non-Western Cultures" + }, + { + "name": "ANTH 3327", + "title": "Globalization and Localization" + }, + { + "name": "ANTH 3328", + "title": "Anthropology of the Family" + }, + { + "name": "ANTH 3331", + "title": "Anthropology and Culture Change" + }, + { + "name": "ANTH 3333", + "title": "The Anthropology of Tourism" + }, + { + "name": "ANTH 3335", + "title": "Anthropology and Social Policy" + }, + { + "name": "ANTH 3336", + "title": "Sex Roles in Cross-Cultural Perspective" + }, + { + "name": "ANTH 3337", + "title": "Violence, War, and Revolution" + }, + { + "name": "ANTH 3355", + "title": "Anthropology of Sexuality and Gender" + }, + { + "name": "ANTH 3366", + "title": "Violence: An Anthropological Approach" + }, + { + "name": "ANTH 3389", + "title": "Fieldwork in Ethnography" + }, + { + "name": "ANTH 3433", + "title": "Ethnographic Film" + }, + { + "name": "ANTH 3436", + "title": "Anthropology of New Media" + }, + { + "name": "ANTH 3438", + "title": "Anthropology of Mass Media" + }, + { + "name": "ANTH 3439", + "title": "Anthropology of Photography" + }, + { + "name": "ANTH 3444", + "title": "Advanced Production of Anthropological Media" + }, + { + "name": "ANTH 3509", + "title": "Language Socialization and Cultural Reproduction" + }, + { + "name": "ANTH 3510", + "title": "Theory and Method in Linguistic Anthropology" + }, + { + "name": "ANTH 3589", + "title": "Language as Social Action" + }, + { + "name": "ANTH 3742", + "title": "Human Paleontology" + }, + { + "name": "ANTH 3743", + "title": "Human Biology of Modern Populations" + }, + { + "name": "ANTH 3744", + "title": "Human Evolutionary Genetics" + }, + { + "name": "ANTH 3746", + "title": "Human Reproduction: Evolutionary Perspectives" + }, + { + "name": "ANTH 3747", + "title": "Human Growth and Development" + }, + { + "name": "ANTH 3764", + "title": "Primate Functional Morphology" + }, + { + "name": "ANTH 3770", + "title": "Methods in Physical Anthropology" + }, + { + "name": "ANTH 3771", + "title": "Quantitative Methods in Anthropology" + }, + { + "name": "ANTH 3772", + "title": "Evolutionary Medicine" + }, + { + "name": "ANTH 3774", + "title": "Environmental Physiology and Health" + }, + { + "name": "ANTH 3796", + "title": "Evolutionary Biology" + }, + { + "name": "ANTH 3910", + "title": "Honors: Special Topics" + }, + { + "name": "ANTH 4082", + "title": "Independent Study" + }, + { + "name": "ANTH 4083", + "title": "Independent Study" + }, + { + "name": "ANTH 4117", + "title": "Seminar in Environmental Archaeology" + }, + { + "name": "ANTH 4185", + "title": "Internship in Anthropology" + }, + { + "name": "ANTH 4196", + "title": "Theory and Practice of Contemporary Archaeology" + }, + { + "name": "ANTH 4397", + "title": "Advanced Seminar in Medical Anthropology" + }, + { + "name": "ANTH 4398", + "title": "Research in Socio-Cultural Anthropology" + }, + { + "name": "ANTH 4496", + "title": "Research in Visual Anthropology" + }, + { + "name": "ANTH 4596", + "title": "Capstone in Linguistic Anthropology" + }, + { + "name": "ANTH 4796", + "title": "Biocultural Adaptations in Human Populations" + }, + { + "name": "ANTH 4798", + "title": "Seminar in Human and Primate Evolution" + }, + { + "name": "ANTH 4897", + "title": "Research in Biological Anthropology" + }, + { + "name": "ANTH 4982", + "title": "Honors: Independent Study" + }, + { + "name": "ANTH 5006", + "title": "Quantitative Analysis of Anthropological Data" + }, + { + "name": "ANTH 5170", + "title": "Methods in Archaeology" + }, + { + "name": "ANTH 5171", + "title": "Comparative Early Civilizations" + }, + { + "name": "ANTH 5172", + "title": "Seminar in Northeastern Prehistory" + }, + { + "name": "ANTH 5177", + "title": "Approaches to Historic Sites in Archaeology" + }, + { + "name": "ANTH 5180", + "title": "Historic Sites in Archaeology" + }, + { + "name": "ANTH 5189", + "title": "Field Session in Archaeology" + }, + { + "name": "ANTH 5310", + "title": "Theories and Methods in Cultural Anthropology" + }, + { + "name": "ANTH 5322", + "title": "Anthropology and Development" + }, + { + "name": "ANTH 5325", + "title": "Culture, History, and Power" + }, + { + "name": "ANTH 5326", + "title": "Problems in the Anthropological Study of Religion" + }, + { + "name": "ANTH 5328", + "title": "Seminar in Social Organization" + }, + { + "name": "ANTH 5332", + "title": "Medical Anthropology" + }, + { + "name": "ANTH 5335", + "title": "Anthropology and Social Policy" + }, + { + "name": "ANTH 5355", + "title": "Anthropology of Sexuality and Gender" + }, + { + "name": "ANTH 5358", + "title": "Race and Class in North America" + }, + { + "name": "ANTH 5366", + "title": "Contemporary Perspectives in Urban Anthropology" + }, + { + "name": "ANTH 5389", + "title": "Fieldwork in Ethnography" + }, + { + "name": "ANTH 5396", + "title": "History of Anthropological Theory" + }, + { + "name": "ANTH 5428", + "title": "Theory and Methods in Culture and Communication" + }, + { + "name": "ANTH 5434", + "title": "Anthropology in Feature Films" + }, + { + "name": "ANTH 5438", + "title": "Anthropology of Mass Media" + }, + { + "name": "ANTH 5439", + "title": "Anthropology and Photography" + }, + { + "name": "ANTH 5444", + "title": "Anthropological Problems in Visual Production" + }, + { + "name": "ANTH 5458", + "title": "Anthropology of Public Culture" + }, + { + "name": "ANTH 5501", + "title": "Language, Power, and Agency" + }, + { + "name": "ANTH 5504", + "title": "Language as Social Action" + }, + { + "name": "ANTH 5509", + "title": "Language Socialization and Cultural Reproduction" + }, + { + "name": "ANTH 5510", + "title": "Methods in Linguistic Anthropology" + }, + { + "name": "ANTH 5770", + "title": "Methods in Physical Anthropology" + }, + { + "name": "ANTH 5796", + "title": "Biocultural Adaptation of Human Populations" + }, + { + "name": "ANTH 5797", + "title": "Reproductive Biology of Human Populations" + }, + { + "name": "ANTH 5798", + "title": "Seminar in Evolutionary Biology" + }, + { + "name": "ANTH 8003", + "title": "Approaches in Cultural Anthropology" + }, + { + "name": "ANTH 8004", + "title": "Approaches in Linguistic Anthropology" + }, + { + "name": "ANTH 8005", + "title": "Approaches in Physical Anthropology" + }, + { + "name": "ANTH 8006", + "title": "Approaches in Archaeology" + }, + { + "name": "ANTH 8011", + "title": "Teaching of Anthropology" + }, + { + "name": "ANTH 8110", + "title": "Problems in Archaeology" + }, + { + "name": "ANTH 8310", + "title": "Problems in Socio-Cultural Anthropology" + }, + { + "name": "ANTH 8315", + "title": "Writing for Anthropologists" + }, + { + "name": "ANTH 8320", + "title": "Problems in Ethnology" + }, + { + "name": "ANTH 8330", + "title": "Funding and Grant Writing in Anthropology" + }, + { + "name": "ANTH 8340", + "title": "Advanced Seminar in Social Anthropology" + }, + { + "name": "ANTH 8344", + "title": "Seminar in Expressive Culture" + }, + { + "name": "ANTH 8366", + "title": "Violence: An Anthropological Approach" + }, + { + "name": "ANTH 8408", + "title": "Approaches in the Anthropology of Visual Communication I" + }, + { + "name": "ANTH 8409", + "title": "Approaches in the Anthropology of Visual Communication II" + }, + { + "name": "ANTH 8429", + "title": "Problems in the Anthropology of Visual Communication" + }, + { + "name": "ANTH 8435", + "title": "Seminar in Visual Anthropology and the Arts" + }, + { + "name": "ANTH 8550", + "title": "Current Issues in Linguistic Anthropology" + }, + { + "name": "ANTH 9082", + "title": "Independent Study" + }, + { + "name": "ANTH 9982", + "title": "Independent Study" + }, + { + "name": "ANTH 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "ANTH 9996", + "title": "Master's Essay" + }, + { + "name": "ANTH 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "ANTH 9999", + "title": "Dissertation Research" + }, + { + "name": "ANTH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ANTH F000", + "title": "* See Statement Below" + }, + { + "name": "ANTH L000", + "title": "Elective LL" + }, + { + "name": "ANTH P000", + "title": "Elective P" + }, + { + "name": "ANTH U000", + "title": "Elective UL" + }, + { + "name": "ABA 2103", + "title": "Concepts and Principles of Behavior Analysis" + }, + { + "name": "ABA 3301", + "title": "Understanding Autism" + }, + { + "name": "ABA 3302", + "title": "Analyzing and Changing Behavior" + }, + { + "name": "ABA 3303", + "title": "Evaluating Behavior Change Intervention" + }, + { + "name": "ABA 3304", + "title": "Ethics and Applied Behavior Analysis" + }, + { + "name": "ABA 5302", + "title": "Students with Autism Spectrum Disorders: Effective Teaching Strategies" + }, + { + "name": "ABA 5303", + "title": "Ethics and Applied Behavior Analysis" + }, + { + "name": "ABA 5304", + "title": "Concepts and Principles of Behavior Analysis" + }, + { + "name": "ABA 5305", + "title": "Single Subject Research Design" + }, + { + "name": "ABA 5306", + "title": "Organizational Behavior Management - OBM" + }, + { + "name": "ABA 5307", + "title": "Experimental Analysis of Behavior - EAB" + }, + { + "name": "ABA 5676", + "title": "Applied Behavior Analysis" + }, + { + "name": "ABA 8787", + "title": "Seminar on Verbal Behavior" + }, + { + "name": "ABA 9387", + "title": "Practicum in Applied Behavior Analysis" + }, + { + "name": "ABA E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ARBC 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "ARBC 0871", + "title": "Arts in Cultural Context" + }, + { + "name": "ARBC 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "ARBC 1001", + "title": "Arabic Elements I" + }, + { + "name": "ARBC 1002", + "title": "Arabic Elements II" + }, + { + "name": "ARBC 1401", + "title": "Spoken Syrian Colloquial I" + }, + { + "name": "ARBC 2000", + "title": "Special Topics I" + }, + { + "name": "ARBC 2001", + "title": "Arabic Intermediate I" + }, + { + "name": "ARBC 2002", + "title": "Arabic Intermediate II" + }, + { + "name": "ARBC 2010", + "title": "Special Topics II" + }, + { + "name": "ARBC 2012", + "title": "Modern Arabic Literature in Translation" + }, + { + "name": "ARBC 2021", + "title": "Contemporary Arab Society in Film (in Translation)" + }, + { + "name": "ARBC 2900", + "title": "Honors Special Topics I" + }, + { + "name": "ARBC 2910", + "title": "Honors Special Topics II" + }, + { + "name": "ARBC 3000", + "title": "Special Topics III" + }, + { + "name": "ARBC 3001", + "title": "Arabic Advanced I" + }, + { + "name": "ARBC 3002", + "title": "Arabic Advanced II" + }, + { + "name": "ARBC 3010", + "title": "Special Topics IV" + }, + { + "name": "ARBC 4183", + "title": "Arabic Directed Readings I" + }, + { + "name": "ARBC 4283", + "title": "Arabic Directed Readings II" + }, + { + "name": "ARBC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ARCH 0835", + "title": "Guerrilla Altruism: A Mini-Manual of Subversive Activism" + }, + { + "name": "ARCH 0875", + "title": "Architecture and the American Cultural Landscape" + }, + { + "name": "ARCH 0935", + "title": "Honors Guerrilla Altruism: A Mini-Manual of Subversive Activism" + }, + { + "name": "ARCH 0975", + "title": "Honors Architecture & the American Cultural Landscape: Physical Dimensions of Cultural Settings" + }, + { + "name": "ARCH 1001", + "title": "Introduction to Design and the Environment" + }, + { + "name": "ARCH 1011", + "title": "Visual Literacy for Architects 1" + }, + { + "name": "ARCH 1012", + "title": "Visual Literacy for Architects 2" + }, + { + "name": "ARCH 1013", + "title": "Architectural Representation for Non-Majors" + }, + { + "name": "ARCH 1017", + "title": "Photography and Visual Literacy" + }, + { + "name": "ARCH 1031", + "title": "Design Fundamentals I" + }, + { + "name": "ARCH 1032", + "title": "Design Fundamentals II" + }, + { + "name": "ARCH 1196", + "title": "History of Form of Cities" + }, + { + "name": "ARCH 1502", + "title": "Investigations into Built Environment Professions" + }, + { + "name": "ARCH 1996", + "title": "Honors History of Form of Cities" + }, + { + "name": "ARCH 2121", + "title": "Foundation Architectural Design 1" + }, + { + "name": "ARCH 2122", + "title": "Foundation Architectural Design 2" + }, + { + "name": "ARCH 2123", + "title": "Facility Management Foundation I" + }, + { + "name": "ARCH 2124", + "title": "Facility Management Foundation II" + }, + { + "name": "ARCH 2141", + "title": "Architectural History: Ancient through Renaissance" + }, + { + "name": "ARCH 2142", + "title": "Architectural History: Renaissance through 20th Century" + }, + { + "name": "ARCH 2151", + "title": "Architecture, Technology, and the Environment" + }, + { + "name": "ARCH 2153", + "title": "Facility Management Case Study Research I" + }, + { + "name": "ARCH 2154", + "title": "Facility Management Case Study Research II" + }, + { + "name": "ARCH 2941", + "title": "Honors Architectural History: Ancient through Renaissance" + }, + { + "name": "ARCH 2942", + "title": "Honors Architectural History: Renaissance through the 20th Century" + }, + { + "name": "ARCH 3010", + "title": "Seminar: Special Topics in Communications" + }, + { + "name": "ARCH 3012", + "title": "Computer Aided Facility Management" + }, + { + "name": "ARCH 3013", + "title": "Project Planning & Programming" + }, + { + "name": "ARCH 3020", + "title": "Special Topics Studio" + }, + { + "name": "ARCH 3030", + "title": "Special Topics in Design" + }, + { + "name": "ARCH 3040", + "title": "Seminar: Special Topics in History and Theory" + }, + { + "name": "ARCH 3050", + "title": "Seminar: Special Topics in Technology" + }, + { + "name": "ARCH 3070", + "title": "Seminar: Special Topics in Site and Context" + }, + { + "name": "ARCH 3080", + "title": "Seminar: Special Topics in Behavior & Culture" + }, + { + "name": "ARCH 3096", + "title": "Vernacular Architecture" + }, + { + "name": "ARCH 3097", + "title": "Introduction to Facility Management" + }, + { + "name": "ARCH 3111", + "title": "Introduction to Historic Preservation" + }, + { + "name": "ARCH 3145", + "title": "Architecture History Non-Western" + }, + { + "name": "ARCH 3146", + "title": "Engaging Places: Observations" + }, + { + "name": "ARCH 3152", + "title": "Materials and Methods" + }, + { + "name": "ARCH 3174", + "title": "Site Investigations" + }, + { + "name": "ARCH 3196", + "title": "Architecture History Non-Western" + }, + { + "name": "ARCH 3212", + "title": "Introduction to CAD" + }, + { + "name": "ARCH 3231", + "title": "Architectural Design III" + }, + { + "name": "ARCH 3232", + "title": "Architectural Design IV" + }, + { + "name": "ARCH 3233", + "title": "Architecture Design Studio in Tokyo (Undergraduate)" + }, + { + "name": "ARCH 3234", + "title": "Architectural Design Studio in Rome" + }, + { + "name": "ARCH 3241", + "title": "Seminar Analysis of Urban Structure in Rome" + }, + { + "name": "ARCH 3242", + "title": "Urban Seminar in Tokyo (Undergraduate)" + }, + { + "name": "ARCH 3251", + "title": "Structural Analysis for Architects" + }, + { + "name": "ARCH 3255", + "title": "The Art of Detailing" + }, + { + "name": "ARCH 3273", + "title": "Housing and Community Design" + }, + { + "name": "ARCH 3296", + "title": "Movements in Modern Architecture" + }, + { + "name": "ARCH 3354", + "title": "Sustainability and Architecture" + }, + { + "name": "ARCH 3362", + "title": "Architecture Workshop " + }, + { + "name": "ARCH 3391", + "title": "Independent Research" + }, + { + "name": "ARCH 3970", + "title": "Honors Special Topics in Architecture, Site and Context" + }, + { + "name": "ARCH 4011", + "title": "Research Methods for Facility Management" + }, + { + "name": "ARCH 4096", + "title": "Professional Practice" + }, + { + "name": "ARCH 4099", + "title": "Capstone Research Seminar for Facility Management" + }, + { + "name": "ARCH 4141", + "title": "Global Preservation Practice" + }, + { + "name": "ARCH 4145", + "title": "Research Methods for Historic Preservation" + }, + { + "name": "ARCH 4182", + "title": "Independent Study in History and Theory" + }, + { + "name": "ARCH 4199", + "title": "Capstone Research Seminar for Historic Preservation" + }, + { + "name": "ARCH 4211", + "title": "Computer Graphics" + }, + { + "name": "ARCH 4282", + "title": "Independent Study in Technology" + }, + { + "name": "ARCH 4296", + "title": "Design, Behavior and Culture" + }, + { + "name": "ARCH 4331", + "title": "Architectural Design V" + }, + { + "name": "ARCH 4332", + "title": "Architectural Design VI" + }, + { + "name": "ARCH 4351", + "title": "Environmental Control Systems for Buildings" + }, + { + "name": "ARCH 4382", + "title": "Independent Study: Site and Context" + }, + { + "name": "ARCH 4431", + "title": "Advanced Architectural Design" + }, + { + "name": "ARCH 4482", + "title": "Independent Study: Behavior & Culture" + }, + { + "name": "ARCH 4596", + "title": "Seminar in Architectural Theory" + }, + { + "name": "ARCH 5011", + "title": "Graduate Representation Intensive 1" + }, + { + "name": "ARCH 5012", + "title": "Graduate Representation Intensive 2" + }, + { + "name": "ARCH 5013", + "title": "Facilities for Health Workshop 1" + }, + { + "name": "ARCH 5014", + "title": "Facilities for Health Workshop 2" + }, + { + "name": "ARCH 5015", + "title": "Facilities for the Arts Workshop 1" + }, + { + "name": "ARCH 5016", + "title": "Facilities for the Arts Workshop 2" + }, + { + "name": "ARCH 5017", + "title": "Facilities Workshop 1" + }, + { + "name": "ARCH 5018", + "title": "Facilities Workshop 2" + }, + { + "name": "ARCH 5033", + "title": "Project Planning and Programming" + }, + { + "name": "ARCH 5096", + "title": "Health Facilities Practice and Management" + }, + { + "name": "ARCH 5122", + "title": "Graduate Design Foundation Intensive" + }, + { + "name": "ARCH 5131", + "title": "Form and Function in Health and Environments" + }, + { + "name": "ARCH 5132", + "title": "Current Topics in Health Facilities Planning and Design" + }, + { + "name": "ARCH 5133", + "title": "Current Topics in Healthy Communities and Design" + }, + { + "name": "ARCH 5134", + "title": "Current Topics in Resilience and Design" + }, + { + "name": "ARCH 5135", + "title": "Current Topics in Energy and Performance" + }, + { + "name": "ARCH 5136", + "title": "Current Topics in Fabrication and Making" + }, + { + "name": "ARCH 5137", + "title": "Current Topics in Visualization" + }, + { + "name": "ARCH 5138", + "title": "Current Topics in Materials and Design" + }, + { + "name": "ARCH 5141", + "title": "Architectural History 1: Ancient through Renaissance" + }, + { + "name": "ARCH 5142", + "title": "Architectural History 2: Renaissance through 20th Century" + }, + { + "name": "ARCH 5152", + "title": "Materials and Methods of Construction" + }, + { + "name": "ARCH 5231", + "title": "Graduate Design Studio 1" + }, + { + "name": "ARCH 5232", + "title": "Graduate Design Studio 2" + }, + { + "name": "ARCH 5251", + "title": "Structural Analysis for Architects" + }, + { + "name": "ARCH 5252", + "title": "Str Des for Architects 1" + }, + { + "name": "ARCH 5253", + "title": "Str Des for Architects 2" + }, + { + "name": "ARCH 5296", + "title": "Movements in Modern Architecture" + }, + { + "name": "ARCH 5351", + "title": "Env Control Systems 1" + }, + { + "name": "ARCH 5596", + "title": "Seminar in Architectural Theory" + }, + { + "name": "ARCH 8000", + "title": "Spec Top Sem in Practice" + }, + { + "name": "ARCH 8011", + "title": "Adv Arch Des Studio 1" + }, + { + "name": "ARCH 8012", + "title": "Elect Arch Des Studio" + }, + { + "name": "ARCH 8013", + "title": "Comp Arch Design Studio" + }, + { + "name": "ARCH 8014", + "title": "Architectural Design for Health" + }, + { + "name": "ARCH 8015", + "title": "Urban Ecologies and Design" + }, + { + "name": "ARCH 8016", + "title": "Advanced Technologies and Design" + }, + { + "name": "ARCH 8096", + "title": "Professional Practice" + }, + { + "name": "ARCH 8100", + "title": "Spec Top Case St in Arch" + }, + { + "name": "ARCH 8131", + "title": "Arch Research Seminar 1" + }, + { + "name": "ARCH 8132", + "title": "Arch Research Seminar 2" + }, + { + "name": "ARCH 8133", + "title": "Arch Research Seminar 3" + }, + { + "name": "ARCH 8134", + "title": "Architecture Research Seminar 4 - Urban Innovations: Technology, Environment and Health in Society" + }, + { + "name": "ARCH 8146", + "title": "Graduate Field Work Report" + }, + { + "name": "ARCH 8233", + "title": "Arch Des St Tokyo (G)" + }, + { + "name": "ARCH 8234", + "title": "Arch Des Studio Rome (G)" + }, + { + "name": "ARCH 8241", + "title": "Seminar: Analysis Urb Str (G)" + }, + { + "name": "ARCH 8242", + "title": "Urban Seminar Tokyo (G)" + }, + { + "name": "ARCH 8352", + "title": "Env Control Systems 2" + }, + { + "name": "ARCH 9182", + "title": "Independent Study in Architecture" + }, + { + "name": "ARCH 9280", + "title": "Special Topics in Communication" + }, + { + "name": "ARCH 9285", + "title": "Architecture Internship" + }, + { + "name": "ARCH 9380", + "title": "Special Topics in History or Culture" + }, + { + "name": "ARCH 9480", + "title": "Special Topics in Technology" + }, + { + "name": "ARCH 9580", + "title": "Special Topics in Site and Context" + }, + { + "name": "ARCH 9682", + "title": "Independent Research" + }, + { + "name": "ARCH 9991", + "title": "Directed Research" + }, + { + "name": "ARCH 9996", + "title": "Arch Design Thesis" + }, + { + "name": "ARCH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ARCH T000", + "title": "Elective" + }, + { + "name": "ARCH T004", + "title": "Architecture Elective" + }, + { + "name": "ART 0822", + "title": "Human Behavior and the Photographic Image" + }, + { + "name": "ART 1010", + "title": "Special Topics" + }, + { + "name": "ART 1011", + "title": "Introduction to Visual Language, 3-D Design" + }, + { + "name": "ART 1012", + "title": "Introduction to Visual Language, Design" + }, + { + "name": "ART 1101", + "title": "Introduction to Beginning Ceramics for Non-Tyler BFA Majors" + }, + { + "name": "ART 1201", + "title": "Introduction to Fibers for Non-Tyler BFA Majors" + }, + { + "name": "ART 1301", + "title": "Introduction to Glass for Non-Tyler BFA Majors" + }, + { + "name": "ART 1401", + "title": "Introduction to Jewelry for Non-Tyler BFA Students" + }, + { + "name": "ART 1402", + "title": "Introduction to CAD for Non-Tyler BFA Students" + }, + { + "name": "ART 1501", + "title": "Painting on Paper for Non-Tyler BFA Students" + }, + { + "name": "ART 1502", + "title": "Introduction to Visual Language, Painting" + }, + { + "name": "ART 1503", + "title": "Introduction to Visual Language, Drawing" + }, + { + "name": "ART 1504", + "title": "Philadelphia Sketchbook" + }, + { + "name": "ART 1505", + "title": "Intermediate Painting" + }, + { + "name": "ART 1506", + "title": "Intermediate Drawing" + }, + { + "name": "ART 1601", + "title": "Art Photography: Darkroom" + }, + { + "name": "ART 1602", + "title": "Art Photography: Digital" + }, + { + "name": "ART 1603", + "title": "Art Photography / Digital On-Line" + }, + { + "name": "ART 1701", + "title": "Screenprinting" + }, + { + "name": "ART 1702", + "title": "Artist Books, Zines and Independent Publishing" + }, + { + "name": "ART 2101", + "title": "Beginning Ceramics" + }, + { + "name": "ART 2102", + "title": "Intermediate Ceramics" + }, + { + "name": "ART 2201", + "title": "Introduction to Fibers and Material Studies" + }, + { + "name": "ART 2202", + "title": "Dyeing for Color I" + }, + { + "name": "ART 2203", + "title": "Alternative Materials" + }, + { + "name": "ART 2204", + "title": "Woven Structure I" + }, + { + "name": "ART 2205", + "title": "Book Structures" + }, + { + "name": "ART 2301", + "title": "Introduction to Glass" + }, + { + "name": "ART 2302", + "title": "Intermediate Glass" + }, + { + "name": "ART 2303", + "title": "Glass Construction, Topic: Cold Glass" + }, + { + "name": "ART 2401", + "title": "Jewelry" + }, + { + "name": "ART 2402", + "title": "CAD/CAM I Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "ART 2403", + "title": "Jewelry II" + }, + { + "name": "ART 2404", + "title": "CAD/CAM II Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "ART 2405", + "title": "Machine Tool Processes" + }, + { + "name": "ART 2406", + "title": "Metalsmithing" + }, + { + "name": "ART 2407", + "title": "Casting" + }, + { + "name": "ART 2408", + "title": "Electroforming Workshop" + }, + { + "name": "ART 2409", + "title": "Plastics for Jewelry and Objects" + }, + { + "name": "ART 2411", + "title": "Production Processes" + }, + { + "name": "ART 2412", + "title": "Color in Metals" + }, + { + "name": "ART 2413", + "title": "Enameling" + }, + { + "name": "ART 2414", + "title": "Casting" + }, + { + "name": "ART 2415", + "title": "Lapidary and Stone Setting" + }, + { + "name": "ART 2416", + "title": "Photo Processes and Etching Jewelry" + }, + { + "name": "ART 2501", + "title": "Painting" + }, + { + "name": "ART 2502", + "title": "Intermediate Drawing" + }, + { + "name": "ART 2503", + "title": "Painting" + }, + { + "name": "ART 2504", + "title": "Intermediate Drawing" + }, + { + "name": "ART 2505", + "title": "Painting Materials and Techniques" + }, + { + "name": "ART 2506", + "title": "Painting Workshop" + }, + { + "name": "ART 2507", + "title": "Intermediate Figure Drawing" + }, + { + "name": "ART 2508", + "title": "Digital Drawing" + }, + { + "name": "ART 2509", + "title": "Drawing Workshop" + }, + { + "name": "ART 2601", + "title": "Photo I: Digital" + }, + { + "name": "ART 2602", + "title": "Digital Imaging" + }, + { + "name": "ART 2603", + "title": "Photo I: Digital" + }, + { + "name": "ART 2604", + "title": "Introduction to Photography (Online Digital Course)" + }, + { + "name": "ART 2701", + "title": "Survey of Lithography and Serigraphy" + }, + { + "name": "ART 2702", + "title": "Survey of Etching and Relief" + }, + { + "name": "ART 2703", + "title": "Book Structures" + }, + { + "name": "ART 2704", + "title": "Serigraphy" + }, + { + "name": "ART 2705", + "title": "Etching" + }, + { + "name": "ART 2706", + "title": "Intaglio Printmaking" + }, + { + "name": "ART 2707", + "title": "Lithography" + }, + { + "name": "ART 2745", + "title": "Contemporary Papermaking in Rome" + }, + { + "name": "ART 2801", + "title": "Sculpture" + }, + { + "name": "ART 2802", + "title": "Video Workshop" + }, + { + "name": "ART 2803", + "title": "Installation" + }, + { + "name": "ART 2804", + "title": "Mold Making Technology" + }, + { + "name": "ART 2805", + "title": "Figure Modeling" + }, + { + "name": "ART 2806", + "title": "Art Matters" + }, + { + "name": "ART 2807", + "title": "Sculpture: Rome" + }, + { + "name": "ART 2808", + "title": "Figure Modeling: Rome" + }, + { + "name": "ART 2900", + "title": "Honors Special Topics" + }, + { + "name": "ART 2901", + "title": "Honors Digital Imaging: Seeing Photographically" + }, + { + "name": "ART 3011", + "title": "Interactive Projects" + }, + { + "name": "ART 3085", + "title": "Field Internship" + }, + { + "name": "ART 3101", + "title": "Advanced Ceramics" + }, + { + "name": "ART 3103", + "title": "Two-Dimensional Ceramics" + }, + { + "name": "ART 3104", + "title": "Ceramic Materials" + }, + { + "name": "ART 3105", + "title": "Porcelain" + }, + { + "name": "ART 3106", + "title": "Advanced Throwing and Wheel Work" + }, + { + "name": "ART 3107", + "title": "Ceramic Mold Making" + }, + { + "name": "ART 3108", + "title": "Ceramic Structures" + }, + { + "name": "ART 3110", + "title": "Ceramic Workshop" + }, + { + "name": "ART 3201", + "title": "Stitching I" + }, + { + "name": "ART 3202", + "title": "Soft Sculpture" + }, + { + "name": "ART 3203", + "title": "Alternative Materials II" + }, + { + "name": "ART 3204", + "title": "Woven Structure II" + }, + { + "name": "ART 3205", + "title": "Body Art and Adornment" + }, + { + "name": "ART 3206", + "title": "Sewn" + }, + { + "name": "ART 3207", + "title": "Intermediate Fibers and Material Studies" + }, + { + "name": "ART 3208", + "title": "Jacquard I" + }, + { + "name": "ART 3209", + "title": "Screen Print on Fabric I" + }, + { + "name": "ART 3210", + "title": "Special Topics in Fibers and Material Studies" + }, + { + "name": "ART 3301", + "title": "Hot Glass, Topic: Blowing" + }, + { + "name": "ART 3303", + "title": "Glass Construction, Topic: Kiln Working" + }, + { + "name": "ART 3304", + "title": "Glass Construction, Topic: Cold Glass" + }, + { + "name": "ART 3305", + "title": "Glass Workshop" + }, + { + "name": "ART 3306", + "title": "Hot Glass Casting" + }, + { + "name": "ART 3307", + "title": "Advanced Glass Seminar" + }, + { + "name": "ART 3308", + "title": "Advanced Glass, Topic: Visiting Artist Series" + }, + { + "name": "ART 3401", + "title": "Metals Workshop" + }, + { + "name": "ART 3402", + "title": "CAD/CAM I Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "ART 3404", + "title": "CAD/CAM II Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "ART 3405", + "title": "Advanced CAD/CAM" + }, + { + "name": "ART 3406", + "title": "Junior Metalsmithing" + }, + { + "name": "ART 3407", + "title": "Junior Metalsmithing" + }, + { + "name": "ART 3408", + "title": "Electroforming Workshop" + }, + { + "name": "ART 3409", + "title": "Plastics for Jewelry and Objects" + }, + { + "name": "ART 3411", + "title": "Production Processes" + }, + { + "name": "ART 3412", + "title": "Color in Metals" + }, + { + "name": "ART 3413", + "title": "Enameling" + }, + { + "name": "ART 3414", + "title": "Plastics for Jewelry" + }, + { + "name": "ART 3415", + "title": "Lapidary and Stone Setting" + }, + { + "name": "ART 3416", + "title": "Photo Processes and Etching Jewelry" + }, + { + "name": "ART 3417", + "title": "Metalsmithing" + }, + { + "name": "ART 3501", + "title": "Advanced Painting" + }, + { + "name": "ART 3502", + "title": "Advanced Painting" + }, + { + "name": "ART 3503", + "title": "Landscape" + }, + { + "name": "ART 3504", + "title": "Figure Painting" + }, + { + "name": "ART 3505", + "title": "Color" + }, + { + "name": "ART 3506", + "title": "Color" + }, + { + "name": "ART 3507", + "title": "Painting on Paper" + }, + { + "name": "ART 3508", + "title": "Painting on Paper" + }, + { + "name": "ART 3509", + "title": "Painting Workshop" + }, + { + "name": "ART 3511", + "title": "Digital Drawing" + }, + { + "name": "ART 3512", + "title": "Rome Sketchbook" + }, + { + "name": "ART 3513", + "title": "Drawing Workshop" + }, + { + "name": "ART 3514", + "title": "Advanced Drawing" + }, + { + "name": "ART 3515", + "title": "Advanced Drawing: Rome" + }, + { + "name": "ART 3516", + "title": "Advanced Drawing" + }, + { + "name": "ART 3517", + "title": "Figure Drawing" + }, + { + "name": "ART 3518", + "title": "Figure Drawing" + }, + { + "name": "ART 3519", + "title": "Advanced Painting: Rome" + }, + { + "name": "ART 3521", + "title": "Fresco Painting" + }, + { + "name": "ART 3601", + "title": "Color Photography I" + }, + { + "name": "ART 3602", + "title": "View Camera" + }, + { + "name": "ART 3603", + "title": "Darkroom Photography" + }, + { + "name": "ART 3604", + "title": "Photographic Lighting" + }, + { + "name": "ART 3605", + "title": "Darkroom Photography" + }, + { + "name": "ART 3606", + "title": "Digital Projects" + }, + { + "name": "ART 3607", + "title": "Contemporary Photography" + }, + { + "name": "ART 3608", + "title": "Color Photography I" + }, + { + "name": "ART 3609", + "title": "Color Photography II" + }, + { + "name": "ART 3610", + "title": "Special Topics in Photography" + }, + { + "name": "ART 3611", + "title": "Advanced Photo Workshop" + }, + { + "name": "ART 3612", + "title": "Photo Process Workshop" + }, + { + "name": "ART 3613", + "title": "Digital Photography" + }, + { + "name": "ART 3701", + "title": "Printmaking Workshop" + }, + { + "name": "ART 3702", + "title": "Relief and Monoprint Workshop" + }, + { + "name": "ART 3703", + "title": "Color Print Workshop" + }, + { + "name": "ART 3704", + "title": "Advanced Serigraphy" + }, + { + "name": "ART 3705", + "title": "Advanced Etching" + }, + { + "name": "ART 3706", + "title": "Advanced Lithography" + }, + { + "name": "ART 3796", + "title": "Art Career Workshop" + }, + { + "name": "ART 3802", + "title": "Advanced Video" + }, + { + "name": "ART 3803", + "title": "Installation" + }, + { + "name": "ART 3804", + "title": "Mold Making Technology" + }, + { + "name": "ART 3805", + "title": "Advanced Sculpture" + }, + { + "name": "ART 3806", + "title": "Advanced Sculpture" + }, + { + "name": "ART 3807", + "title": "Advanced Sculpture" + }, + { + "name": "ART 3808", + "title": "Advanced Sculpture" + }, + { + "name": "ART 3809", + "title": "Public Art Projects" + }, + { + "name": "ART 3811", + "title": "Sculpture Techniques and Materials" + }, + { + "name": "ART 3812", + "title": "Foundry" + }, + { + "name": "ART 3813", + "title": "Junior Sculpture Seminar" + }, + { + "name": "ART 3814", + "title": "Sculpture Workshop" + }, + { + "name": "ART 3896", + "title": "PDS Seminar" + }, + { + "name": "ART 4082", + "title": "Independent Study" + }, + { + "name": "ART 4096", + "title": "Business Practices in Crafts" + }, + { + "name": "ART 4101", + "title": "Advanced Ceramics" + }, + { + "name": "ART 4102", + "title": "Senior Ceramics" + }, + { + "name": "ART 4201", + "title": "Stitching II" + }, + { + "name": "ART 4202", + "title": "Dyeing for Color II" + }, + { + "name": "ART 4203", + "title": "Jacquard II" + }, + { + "name": "ART 4204", + "title": "Woven Structure III" + }, + { + "name": "ART 4205", + "title": "Senior Seminar in Fibers and Material Studies" + }, + { + "name": "ART 4209", + "title": "Screen Print on Fabric II" + }, + { + "name": "ART 4210", + "title": "Special Topics in Fibers and Material Studies" + }, + { + "name": "ART 4301", + "title": "Hot Glass Blowing" + }, + { + "name": "ART 4303", + "title": "Glass Construction, Topic: Kiln Working" + }, + { + "name": "ART 4304", + "title": "Glass Construction, Topic: Cold Glass" + }, + { + "name": "ART 4306", + "title": "Hot Glass Casting" + }, + { + "name": "ART 4307", + "title": "Advanced Glass Seminar: Visiting Artist Series" + }, + { + "name": "ART 4308", + "title": "Advanced Glass Seminar" + }, + { + "name": "ART 4401", + "title": "Senior Metals and Plastics" + }, + { + "name": "ART 4402", + "title": "Senior Metals and Plastics" + }, + { + "name": "ART 4403", + "title": "Senior Seminar in Metals" + }, + { + "name": "ART 4404", + "title": "Rapid Prototyping" + }, + { + "name": "ART 4405", + "title": "Rapid Prototyping" + }, + { + "name": "ART 4501", + "title": "Advanced Painting" + }, + { + "name": "ART 4502", + "title": "Advanced Painting" + }, + { + "name": "ART 4503", + "title": "Landscape" + }, + { + "name": "ART 4504", + "title": "Figure Painting" + }, + { + "name": "ART 4505", + "title": "Color" + }, + { + "name": "ART 4506", + "title": "Senior Painting Studio" + }, + { + "name": "ART 4507", + "title": "Senior Painting Studio" + }, + { + "name": "ART 4511", + "title": "Critical Dialogues" + }, + { + "name": "ART 4514", + "title": "Advanced Drawing" + }, + { + "name": "ART 4517", + "title": "Figure Drawing" + }, + { + "name": "ART 4518", + "title": "Figure Drawing" + }, + { + "name": "ART 4601", + "title": "Senior Photography" + }, + { + "name": "ART 4602", + "title": "Senior Projects Workshop/Seminar" + }, + { + "name": "ART 4696", + "title": "Senior Seminar in Photography" + }, + { + "name": "ART 4801", + "title": "Senior Sculpture" + }, + { + "name": "ART 4812", + "title": "Foundry" + }, + { + "name": "ART 5161", + "title": "Graduate Photo Workshop: Digital Photography" + }, + { + "name": "ART 5401", + "title": "Metals Workshop" + }, + { + "name": "ART 5604", + "title": "Photographic Lighting" + }, + { + "name": "ART 5606", + "title": "Digital Projects" + }, + { + "name": "ART 5607", + "title": "Contemporary Photography" + }, + { + "name": "ART 5612", + "title": "Graduate Photo Process Workshop" + }, + { + "name": "ART 8001", + "title": "Graduate Professional Practices" + }, + { + "name": "ART 8005", + "title": "Critique and Critical Discourse II" + }, + { + "name": "ART 8083", + "title": "Graduate Projects: Painting and Sculpture" + }, + { + "name": "ART 8084", + "title": "Graduate Projects: Painting and Sculpture II" + }, + { + "name": "ART 8101", + "title": "Graduate Projects, Ceramics" + }, + { + "name": "ART 8102", + "title": "Graduate Projects, Ceramics II" + }, + { + "name": "ART 8201", + "title": "Graduate Projects, Fibers" + }, + { + "name": "ART 8202", + "title": "Graduate Projects, Fibers II" + }, + { + "name": "ART 8301", + "title": "Graduate Seminar, Ceramics/Glass/Fibers" + }, + { + "name": "ART 8302", + "title": "Graduate Seminar, Ceramics/Glass/Fibers II" + }, + { + "name": "ART 8303", + "title": "Graduate Projects, Glass" + }, + { + "name": "ART 8304", + "title": "Graduate Projects, Glass II" + }, + { + "name": "ART 8401", + "title": "Graduate Seminar, Metals" + }, + { + "name": "ART 8402", + "title": "Graduate Seminar, Metals II" + }, + { + "name": "ART 8403", + "title": "Graduate Projects, Metals" + }, + { + "name": "ART 8404", + "title": "Graduate Projects, Metals II" + }, + { + "name": "ART 8501", + "title": "Graduate Drawing" + }, + { + "name": "ART 8502", + "title": "Graduate Drawing II" + }, + { + "name": "ART 8506", + "title": "Theories of Visual Representation" + }, + { + "name": "ART 8507", + "title": "Graduate Seminar" + }, + { + "name": "ART 8508", + "title": "Graduate Seminar: Painting" + }, + { + "name": "ART 8509", + "title": "Graduate Seminar II" + }, + { + "name": "ART 8511", + "title": "Graduate Painting Seminar II" + }, + { + "name": "ART 8583", + "title": "Graduate Projects: Painting" + }, + { + "name": "ART 8601", + "title": "Graduate Seminar in Photography" + }, + { + "name": "ART 8602", + "title": "Graduate Seminar in Photography II" + }, + { + "name": "ART 8683", + "title": "Graduate Projects in Photography I" + }, + { + "name": "ART 8684", + "title": "Graduate Projects in Photography II" + }, + { + "name": "ART 8701", + "title": "Graduate Seminar in Printmaking" + }, + { + "name": "ART 8702", + "title": "Graduate Seminar in Printmaking II" + }, + { + "name": "ART 8783", + "title": "Graduate Projects in Printmaking" + }, + { + "name": "ART 8784", + "title": "Graduate Projects in Printmaking II" + }, + { + "name": "ART 8801", + "title": "Graduate Seminar: Sculpture" + }, + { + "name": "ART 8802", + "title": "Graduate Sculpture Seminar II" + }, + { + "name": "ART 8883", + "title": "Graduate Projects: Sculpture" + }, + { + "name": "ART 8884", + "title": "Graduate Projects: Sculpture II" + }, + { + "name": "ART 8985", + "title": "Teaching in Higher Education" + }, + { + "name": "ART 9184", + "title": "Graduate Thesis Exhibition: Clay" + }, + { + "name": "ART 9195", + "title": "Graduate Thesis Research: Ceramics and Glass" + }, + { + "name": "ART 9202", + "title": "Graduate Thesis Research: Fibers" + }, + { + "name": "ART 9284", + "title": "Graduate Thesis Exhibition: Fibers" + }, + { + "name": "ART 9384", + "title": "Graduate Thesis Exhibition: Glass" + }, + { + "name": "ART 9401", + "title": "Graduate Thesis Research: Metals" + }, + { + "name": "ART 9484", + "title": "Graduate Thesis Exhibition: Metals" + }, + { + "name": "ART 9995", + "title": "Master of Fine Arts Thesis" + }, + { + "name": "ART E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ART T000", + "title": "Elective" + }, + { + "name": "ARTU 1101", + "title": "Painting for Non-Majors" + }, + { + "name": "ARTU 1201", + "title": "3-D Design" + }, + { + "name": "ARTU 1401", + "title": "Drawing I" + }, + { + "name": "ARTU 1402", + "title": "Drawing II" + }, + { + "name": "ARTU 1501", + "title": "2D Design" + }, + { + "name": "ARTU 2001", + "title": "Philadelphia Sketchbook" + }, + { + "name": "ARTU 2102", + "title": "Painting" + }, + { + "name": "ARTU 2111", + "title": "Aqueous Media" + }, + { + "name": "ARTU 2121", + "title": "Introduction to Landscape Painting" + }, + { + "name": "ARTU 2122", + "title": "Advanced Landscape Painting" + }, + { + "name": "ARTU 2202", + "title": "Intermediate 3-D" + }, + { + "name": "ARTU 2301", + "title": "Relief Printmaking" + }, + { + "name": "ARTU 2302", + "title": "Intermediate Printmaking: Relief" + }, + { + "name": "ARTU 2311", + "title": "Lithography" + }, + { + "name": "ARTU 2312", + "title": "Intermediate Printmaking: Lithography" + }, + { + "name": "ARTU 2331", + "title": "Intaglio Printmaking" + }, + { + "name": "ARTU 2341", + "title": "Screenprinting" + }, + { + "name": "ARTU 2351", + "title": "Artist Books, Zines and Independent Publishing" + }, + { + "name": "ARTU 2400", + "title": "Special Topics" + }, + { + "name": "ARTU 2402", + "title": "Intermediate Drawing" + }, + { + "name": "ARTU 2601", + "title": "Computer Imaging" + }, + { + "name": "ARTU 2602", + "title": "Intermediate Computer Imaging" + }, + { + "name": "ARTU 2605", + "title": "Internet Imaging" + }, + { + "name": "ARTU 2801", + "title": "Art Photography: Darkroom" + }, + { + "name": "ARTU 2802", + "title": "Intermediate Art Photography: Darkroom" + }, + { + "name": "ARTU 2811", + "title": "Art Photography: Digital" + }, + { + "name": "ARTU 2812", + "title": "Intermediate Art Photography: Digital" + }, + { + "name": "ARTU 2831", + "title": "Art Photography / Digital On-Line" + }, + { + "name": "ARTU 2835", + "title": "Art Photo / Moving Image" + }, + { + "name": "ARTU 2900", + "title": "Honors Special Topics" + }, + { + "name": "ARTU 3103", + "title": "Advanced Painting" + }, + { + "name": "ARTU 3203", + "title": "Advanced 3-D" + }, + { + "name": "ARTU 3303", + "title": "Advanced Printmaking" + }, + { + "name": "ARTU 3321", + "title": "Intermediate Printmaking: Digital" + }, + { + "name": "ARTU 3403", + "title": "Advanced Drawing" + }, + { + "name": "ARTU 3601", + "title": "Multimedia Studio" + }, + { + "name": "ARTU 3602", + "title": "Digital Mixed Media Studio" + }, + { + "name": "ARTU 3603", + "title": "Advanced Computer Imaging" + }, + { + "name": "ARTU 3803", + "title": "Advanced Art Photography: Darkroom" + }, + { + "name": "ARTU 3813", + "title": "Advanced Art Photography: Digital" + }, + { + "name": "ARTU 3825", + "title": "Intermediate Art Photography: Hybrid" + }, + { + "name": "ARTU 3826", + "title": "Advanced Art Photography: Hybrid" + }, + { + "name": "ARTU 4148", + "title": "Painting Workshop" + }, + { + "name": "ARTU 4149", + "title": "Painting Portfolio" + }, + { + "name": "ARTU 4182", + "title": "Independent Study: Painting" + }, + { + "name": "ARTU 4248", + "title": "3-D Workshop" + }, + { + "name": "ARTU 4249", + "title": "3-D Portfolio" + }, + { + "name": "ARTU 4282", + "title": "Independent Study: 3-D" + }, + { + "name": "ARTU 4348", + "title": "Printmaking Workshop" + }, + { + "name": "ARTU 4349", + "title": "Printmaking Portfolio" + }, + { + "name": "ARTU 4382", + "title": "Independent Study: Printmaking" + }, + { + "name": "ARTU 4448", + "title": "Drawing Workshop" + }, + { + "name": "ARTU 4449", + "title": "Drawing Portfolio" + }, + { + "name": "ARTU 4482", + "title": "Independent Study: Drawing" + }, + { + "name": "ARTU 4648", + "title": "Computer Imaging Workshop" + }, + { + "name": "ARTU 4649", + "title": "Computer Imaging Portfolio" + }, + { + "name": "ARTU 4682", + "title": "Independent Study: Computer Imaging" + }, + { + "name": "ARTU 4785", + "title": "Field Internship" + }, + { + "name": "ARTU 4796", + "title": "Art Seminar" + }, + { + "name": "ARTU 4848", + "title": "Art Photography Workshop" + }, + { + "name": "ARTU 4849", + "title": "Art Photography Portfolio" + }, + { + "name": "ARTU 4882", + "title": "Independent Study: Art Photography" + }, + { + "name": "ARTU 5301", + "title": "Introduction to Relief Painting" + }, + { + "name": "ARTU 5601", + "title": "Introduction to Computer Imaging" + }, + { + "name": "ARTU 5605", + "title": "Introduction to Internet Imaging" + }, + { + "name": "ARTU 5801", + "title": "Basic Photography Black and White I" + }, + { + "name": "ARTU 5811", + "title": "Introduction to Digital Photography" + }, + { + "name": "ARTU E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ARTU T000", + "title": "Elective" + }, + { + "name": "ARTU T003", + "title": "Elective" + }, + { + "name": "ARTE 2001", + "title": "Science and Art of Teaching" + }, + { + "name": "ARTE 2011", + "title": "Creative Process in Art Therapy" + }, + { + "name": "ARTE 3003", + "title": "Arts & Learning in the Elementary School" + }, + { + "name": "ARTE 3004", + "title": "Introduction to Art Therapy" + }, + { + "name": "ARTE 3010", + "title": "Special Topics" + }, + { + "name": "ARTE 3011", + "title": "Introductory Seminar in Community Arts" + }, + { + "name": "ARTE 3089", + "title": "Research and Project Planning Seminar in Community Arts" + }, + { + "name": "ARTE 3096", + "title": "Art in Elementary and Secondary School" + }, + { + "name": "ARTE 3202", + "title": "Artist Educators in Schools and Community Settings" + }, + { + "name": "ARTE 3911", + "title": "Honors Introductory Seminar in Community Arts" + }, + { + "name": "ARTE 3989", + "title": "Honors Research and Project Planning in Community Arts" + }, + { + "name": "ARTE 4003", + "title": "Special Needs K-12 Students in the Art Room" + }, + { + "name": "ARTE 4012", + "title": "Community Arts" + }, + { + "name": "ARTE 4082", + "title": "Independent Study" + }, + { + "name": "ARTE 4088", + "title": "Student Teaching" + }, + { + "name": "ARTE 4089", + "title": "Evaluation and Documentation in Community Arts" + }, + { + "name": "ARTE 4289", + "title": "Field Work in Art Therapy" + }, + { + "name": "ARTE 5003", + "title": "Special Needs K-12 Students in the Art Room" + }, + { + "name": "ARTE 5082", + "title": "Independent Study" + }, + { + "name": "ARTE 5100", + "title": "Special Topics" + }, + { + "name": "ARTE 5202", + "title": "Teaching Artists" + }, + { + "name": "ARTE 5888", + "title": "Student Teaching" + }, + { + "name": "ARTE 8001", + "title": "Contemporary Issues in Art Education" + }, + { + "name": "ARTE 8002", + "title": "History of Art Education" + }, + { + "name": "ARTE 8003", + "title": "Art Education Research" + }, + { + "name": "ARTE 8004", + "title": "Introduction to Art Therapy" + }, + { + "name": "ARTE 8011", + "title": "Interdisciplinary Seminar in Community Arts" + }, + { + "name": "ARTE 8087", + "title": "Research and Project Planning Seminar in Community Arts" + }, + { + "name": "ARTE 8187", + "title": "Field Work in Community Arts" + }, + { + "name": "ARTE 8287", + "title": "Evaluation and Documentation Seminar in Community Arts" + }, + { + "name": "ARTE 9187", + "title": "Graduate Materials and Methods in Art" + }, + { + "name": "ARTE 9991", + "title": "Directed Research" + }, + { + "name": "ARTE 9995", + "title": "Master's Thesis Research & Writing" + }, + { + "name": "ARTE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ARTE T000", + "title": "Elective" + }, + { + "name": "ARTH 0803", + "title": "The Art of Sacred Space" + }, + { + "name": "ARTH 0808", + "title": "Arts of the Western World: The Visual Experience" + }, + { + "name": "ARTH 0813", + "title": "The History of Art in Rome" + }, + { + "name": "ARTH 1003", + "title": "History of Art in Rome" + }, + { + "name": "ARTH 1103", + "title": "Introduction to Methods and Theories" + }, + { + "name": "ARTH 1148", + "title": "International Cinema" + }, + { + "name": "ARTH 1155", + "title": "Arts of the World I: Prehistoric to 1300" + }, + { + "name": "ARTH 1156", + "title": "Arts of the World II: 1300 to the 21st Century" + }, + { + "name": "ARTH 1801", + "title": "Arts of Asia" + }, + { + "name": "ARTH 1955", + "title": "Honors Arts of the World I: Prehistoric to 1300" + }, + { + "name": "ARTH 1956", + "title": "Honors Arts of the World II: 1300 to the 21st Century" + }, + { + "name": "ARTH 2000", + "title": "Topics in Art History" + }, + { + "name": "ARTH 2002", + "title": "History of Modern Crafts" + }, + { + "name": "ARTH 2003", + "title": "History of Modern Crafts and Design: Design Movements from the Crystal Palace until Today" + }, + { + "name": "ARTH 2004", + "title": "History of Printmaking" + }, + { + "name": "ARTH 2005", + "title": "Cultural Heritage Preservation" + }, + { + "name": "ARTH 2006", + "title": "Curatorial Methodologies" + }, + { + "name": "ARTH 2007", + "title": "World Photography Since 1839" + }, + { + "name": "ARTH 2008", + "title": "History of Photography" + }, + { + "name": "ARTH 2010", + "title": "Topics in Art History" + }, + { + "name": "ARTH 2011", + "title": "Philadelphia Architecture" + }, + { + "name": "ARTH 2013", + "title": "Art of the Film" + }, + { + "name": "ARTH 2041", + "title": "Architectural History: Ancient to Renaissance" + }, + { + "name": "ARTH 2042", + "title": "Architectural History: Renaissance to the 20th Century" + }, + { + "name": "ARTH 2043", + "title": "Early Islamic Art and Architecture" + }, + { + "name": "ARTH 2044", + "title": "Later Islamic Art: From the Mongols to the Mughals" + }, + { + "name": "ARTH 2090", + "title": "Topics in Arts Administration Practice" + }, + { + "name": "ARTH 2096", + "title": "Art History Writing Intensive" + }, + { + "name": "ARTH 2097", + "title": "Art History Writing Intensive" + }, + { + "name": "ARTH 2098", + "title": "Art History Writing Intensive" + }, + { + "name": "ARTH 2101", + "title": "Art of Ancient Egypt and the Aegean" + }, + { + "name": "ARTH 2102", + "title": "Greek Mythology and Art" + }, + { + "name": "ARTH 2105", + "title": "Roman Art and Archaeology" + }, + { + "name": "ARTH 2110", + "title": "Topics in Ancient Art" + }, + { + "name": "ARTH 2111", + "title": "Minoan Art" + }, + { + "name": "ARTH 2117", + "title": "Archaeological Excavation" + }, + { + "name": "ARTH 2129", + "title": "Greek and Roman Sculpture" + }, + { + "name": "ARTH 2135", + "title": "Art and Culture in Ancient Rome" + }, + { + "name": "ARTH 2196", + "title": "Greek and Roman Sculpture" + }, + { + "name": "ARTH 2197", + "title": "Art History Writing Intensive" + }, + { + "name": "ARTH 2200", + "title": "Topics in Medieval Art" + }, + { + "name": "ARTH 2215", + "title": "Late Antique/Byzantine Art" + }, + { + "name": "ARTH 2216", + "title": "Early Medieval Visual Culture" + }, + { + "name": "ARTH 2217", + "title": "Gothic Art" + }, + { + "name": "ARTH 2218", + "title": "From Constantine to Mohammed: Art & Architecture of the Mediterranean from the 4th to 8th Century AD" + }, + { + "name": "ARTH 2296", + "title": "Topics in Islamic Art and Architecture" + }, + { + "name": "ARTH 2300", + "title": "Special Topics" + }, + { + "name": "ARTH 2310", + "title": "Topics in Renaissance Art" + }, + { + "name": "ARTH 2321", + "title": "Masters of Renaissance Art" + }, + { + "name": "ARTH 2323", + "title": "Early Renaissance Art in Italy" + }, + { + "name": "ARTH 2325", + "title": "Northern Renaissance Art 1350-1550" + }, + { + "name": "ARTH 2329", + "title": "Renaissance and Baroque Architecture in Italy" + }, + { + "name": "ARTH 2350", + "title": "Topics in Early Modern Art, 1400-1750" + }, + { + "name": "ARTH 2400", + "title": "Topics in Baroque Art" + }, + { + "name": "ARTH 2428", + "title": "Wonders of Rome: Art and Culture of the Baroque Era" + }, + { + "name": "ARTH 2431", + "title": "Southern Baroque Art: Italy and Spain" + }, + { + "name": "ARTH 2432", + "title": "Northern Baroque Art" + }, + { + "name": "ARTH 2450", + "title": "Topics in Eighteenth Century Art" + }, + { + "name": "ARTH 2497", + "title": "Northern Baroque Art" + }, + { + "name": "ARTH 2500", + "title": "Topics in 19th Century Art" + }, + { + "name": "ARTH 2535", + "title": "Romanticism" + }, + { + "name": "ARTH 2543", + "title": "Impressionism and Post-Impressionism" + }, + { + "name": "ARTH 2563", + "title": "Painting: Late 19th Century" + }, + { + "name": "ARTH 2600", + "title": "Topics in 20th Century Art" + }, + { + "name": "ARTH 2601", + "title": "History of Modern Graphic Design" + }, + { + "name": "ARTH 2610", + "title": "Topics in Modern and Contemporary Art" + }, + { + "name": "ARTH 2622", + "title": "Galleries and Studios of Rome" + }, + { + "name": "ARTH 2642", + "title": "Modern Painting and Sculpture 1900-45" + }, + { + "name": "ARTH 2644", + "title": "Modern Art: 1945 to the Present" + }, + { + "name": "ARTH 2651", + "title": "Symbolism, Dada, and Surrealism" + }, + { + "name": "ARTH 2658", + "title": "Picasso and Modern Masters" + }, + { + "name": "ARTH 2660", + "title": "Topics in International Cinema" + }, + { + "name": "ARTH 2670", + "title": "Topics in Contemporary Art" + }, + { + "name": "ARTH 2680", + "title": "Topics in Global Art" + }, + { + "name": "ARTH 2700", + "title": "Topics in American Art" + }, + { + "name": "ARTH 2701", + "title": "Main Trends in American 20th Century Painting" + }, + { + "name": "ARTH 2704", + "title": "19th Century American Art" + }, + { + "name": "ARTH 2751", + "title": "American Art" + }, + { + "name": "ARTH 2753", + "title": "Art and Environment in American Culture" + }, + { + "name": "ARTH 2760", + "title": "Topics in Art of Latin America and the Caribbean" + }, + { + "name": "ARTH 2765", + "title": "Revolution and Beyond: Modern & Contemporary Art in Latin America" + }, + { + "name": "ARTH 2800", + "title": "Topics in Non-Western Art" + }, + { + "name": "ARTH 2807", + "title": "East Meets West" + }, + { + "name": "ARTH 2815", + "title": "Pre-Modern Japanese Art up to the Edo Period" + }, + { + "name": "ARTH 2816", + "title": "Art and the City: Tokyo in the 1960s and 1970s" + }, + { + "name": "ARTH 2818", + "title": "Art of India" + }, + { + "name": "ARTH 2819", + "title": "Southeast Asian Art" + }, + { + "name": "ARTH 2868", + "title": "Arts of Asia" + }, + { + "name": "ARTH 2871", + "title": "Chinese Art" + }, + { + "name": "ARTH 2896", + "title": "Modern Japanese Art and Visual Culture, from late Edo to Showa" + }, + { + "name": "ARTH 2897", + "title": "Writing for Art History: Art History Writing Intensive Seminar" + }, + { + "name": "ARTH 2898", + "title": "Contemporary Japanese Art and Visual Culture, from 1945 to the present" + }, + { + "name": "ARTH 2904", + "title": "Honors Counterfeiting, Looting and the Ethics of Collecting Ancient Art" + }, + { + "name": "ARTH 2990", + "title": "Honors Special Topics" + }, + { + "name": "ARTH 3082", + "title": "Independent Study" + }, + { + "name": "ARTH 3097", + "title": "Art History Capstone" + }, + { + "name": "ARTH 3182", + "title": "Independent Study" + }, + { + "name": "ARTH 3301", + "title": "Michelangelo" + }, + { + "name": "ARTH 3302", + "title": "Women and Art" + }, + { + "name": "ARTH 3324", + "title": "High Renaissance Art in Italy" + }, + { + "name": "ARTH 4082", + "title": "Independent Study" + }, + { + "name": "ARTH 4182", + "title": "Independent Study" + }, + { + "name": "ARTH 4285", + "title": "Internship" + }, + { + "name": "ARTH 5350", + "title": "Topics in Arts Administration" + }, + { + "name": "ARTH 5360", + "title": "Topics in Latin American Art and the Caribbean" + }, + { + "name": "ARTH 5370", + "title": "Topics in Contemporary Art" + }, + { + "name": "ARTH 5380", + "title": "Topics in Global Art" + }, + { + "name": "ARTH 5400", + "title": "Topics in Art History" + }, + { + "name": "ARTH 5402", + "title": "History of Modern Crafts and Design I" + }, + { + "name": "ARTH 5403", + "title": "History of Modern Crafts and Design II" + }, + { + "name": "ARTH 5405", + "title": "History of Photography" + }, + { + "name": "ARTH 5408", + "title": "The History of Printmaking" + }, + { + "name": "ARTH 5431", + "title": "International Cinema" + }, + { + "name": "ARTH 5460", + "title": "Topics in 20th-Century Art" + }, + { + "name": "ARTH 5462", + "title": "Picasso and Modern Masters" + }, + { + "name": "ARTH 5500", + "title": "Topics in Art History II" + }, + { + "name": "ARTH 5510", + "title": "Topics in Ancient Art" + }, + { + "name": "ARTH 5520", + "title": "Topics in Medieval Art" + }, + { + "name": "ARTH 5530", + "title": "Topics in Renaissance Art" + }, + { + "name": "ARTH 5540", + "title": "Topics in Baroque Art" + }, + { + "name": "ARTH 5550", + "title": "Topics in 19th-Century Art" + }, + { + "name": "ARTH 5560", + "title": "Topics in 20th-Century Art" + }, + { + "name": "ARTH 5580", + "title": "Topics in Asian Art" + }, + { + "name": "ARTH 5600", + "title": "Topics in Art History III" + }, + { + "name": "ARTH 5601", + "title": "Historiography of Art History" + }, + { + "name": "ARTH 5605", + "title": "The History of Printmaking and Print Culture" + }, + { + "name": "ARTH 5610", + "title": "Topics in Ancient Art II" + }, + { + "name": "ARTH 5621", + "title": "Archeological Program" + }, + { + "name": "ARTH 5630", + "title": "Topics in Renaissance Art II" + }, + { + "name": "ARTH 5640", + "title": "Topics in Baroque Art II" + }, + { + "name": "ARTH 5650", + "title": "Topics in 19th Century Art II" + }, + { + "name": "ARTH 5660", + "title": "Topics in 20th Century Art II" + }, + { + "name": "ARTH 5665", + "title": "Modern and Contemporary Art in Latin America" + }, + { + "name": "ARTH 5670", + "title": "Topics in Contemporary Art" + }, + { + "name": "ARTH 5680", + "title": "Topics in Global Art" + }, + { + "name": "ARTH 8400", + "title": "Seminar Composition Studies: Painting" + }, + { + "name": "ARTH 8401", + "title": "Text + Image: Framing the Modern Illustrated Book" + }, + { + "name": "ARTH 8402", + "title": "Introduction to Critical Thinking and Practice" + }, + { + "name": "ARTH 8404", + "title": "The History, Theory, and Practice of Printmaking" + }, + { + "name": "ARTH 8410", + "title": "Seminar: Comparative Studies in Ancient Techniques" + }, + { + "name": "ARTH 8430", + "title": "Seminar: Problems, Period, Style" + }, + { + "name": "ARTH 8440", + "title": "Seminar: Problems, Period, Style" + }, + { + "name": "ARTH 8450", + "title": "Special Projects" + }, + { + "name": "ARTH 8460", + "title": "Seminar in Contemporary Art" + }, + { + "name": "ARTH 8470", + "title": "Seminar in Modern Art" + }, + { + "name": "ARTH 8475", + "title": "Seminar in 19th-Century Art" + }, + { + "name": "ARTH 8480", + "title": "Seminar in Early Modern Art" + }, + { + "name": "ARTH 8490", + "title": "Seminar in Global Art" + }, + { + "name": "ARTH 8530", + "title": "Seminar: Problems, Period, Style II" + }, + { + "name": "ARTH 8540", + "title": "Seminar: Problems, Period, Style II" + }, + { + "name": "ARTH 8560", + "title": "Seminar in Contemporary Art II" + }, + { + "name": "ARTH 8570", + "title": "Seminar in Modern Art II" + }, + { + "name": "ARTH 8610", + "title": "Problems in Ancient Art" + }, + { + "name": "ARTH 8620", + "title": "Problems in Medieval Art" + }, + { + "name": "ARTH 8630", + "title": "Problems in Renaissance Art" + }, + { + "name": "ARTH 8635", + "title": "Problems in Northern Renaissance Art" + }, + { + "name": "ARTH 8640", + "title": "Problems in Baroque Art" + }, + { + "name": "ARTH 8650", + "title": "Problems in 19th-Century Art" + }, + { + "name": "ARTH 8660", + "title": "Problems in 20th-Century Art" + }, + { + "name": "ARTH 8665", + "title": "Problems in 21st Century Art" + }, + { + "name": "ARTH 8670", + "title": "Problems in Global Art" + }, + { + "name": "ARTH 8690", + "title": "Problems in Islamic Art" + }, + { + "name": "ARTH 8710", + "title": "Problems in Ancient Art II" + }, + { + "name": "ARTH 8720", + "title": "Problems in Medieval Art II" + }, + { + "name": "ARTH 8730", + "title": "Problems in Renaissance Art II" + }, + { + "name": "ARTH 8740", + "title": "Problems in Baroque Art II" + }, + { + "name": "ARTH 8750", + "title": "Problems in 19th-Century Art II" + }, + { + "name": "ARTH 8760", + "title": "Problems in 20th-Century Art II" + }, + { + "name": "ARTH 8810", + "title": "Problems in Ancient Art III" + }, + { + "name": "ARTH 8820", + "title": "Problems in Medieval Art III" + }, + { + "name": "ARTH 8830", + "title": "Problems in Renaissance Art III" + }, + { + "name": "ARTH 8840", + "title": "Problems in Baroque Art III" + }, + { + "name": "ARTH 8850", + "title": "Problems in 19th-Century Art III" + }, + { + "name": "ARTH 8860", + "title": "Problems in 20th-Century Art III" + }, + { + "name": "ARTH 9183", + "title": "Archaeological Program" + }, + { + "name": "ARTH 9585", + "title": "Internship Seminar" + }, + { + "name": "ARTH 9586", + "title": "Internship Seminar" + }, + { + "name": "ARTH 9891", + "title": "Directed Research" + }, + { + "name": "ARTH 9991", + "title": "Directed Research" + }, + { + "name": "ARTH 9993", + "title": "Comps Study" + }, + { + "name": "ARTH 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "ARTH 9996", + "title": "Thesis Research" + }, + { + "name": "ARTH 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "ARTH 9999", + "title": "Dissertation Research" + }, + { + "name": "ARTH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ARTH F000", + "title": "* See Statement Below" + }, + { + "name": "ARTH L000", + "title": "Elective LL" + }, + { + "name": "ARTH P000", + "title": "Elective P" + }, + { + "name": "ARTH U000", + "title": "Elective UL" + }, + { + "name": "ARTT 2011", + "title": "Creative Process in Art Therapy" + }, + { + "name": "ARTT 3004", + "title": "Introduction to Art Therapy" + }, + { + "name": "ARTT 4289", + "title": "Field Work in Art Therapy" + }, + { + "name": "ARTT 8004", + "title": "Introduction to Art Therapy" + }, + { + "name": "ASST 0811", + "title": "Asian Behavior & Thought" + }, + { + "name": "ASST 0815", + "title": "Language in Society" + }, + { + "name": "ASST 0817", + "title": "Youth Cultures" + }, + { + "name": "ASST 0834", + "title": "Representing Race" + }, + { + "name": "ASST 0862", + "title": "Development & Globalization" + }, + { + "name": "ASST 0863", + "title": "Religion in the World" + }, + { + "name": "ASST 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "ASST 0871", + "title": "Arts in Cultural Context" + }, + { + "name": "ASST 1051", + "title": "Premodern Asia" + }, + { + "name": "ASST 1052", + "title": "Modern Asia" + }, + { + "name": "ASST 1101", + "title": "Introduction to World Religions" + }, + { + "name": "ASST 1102", + "title": "Introduction to Asian Religions" + }, + { + "name": "ASST 1801", + "title": "Chinese and Japanese Literature in Cultural Context" + }, + { + "name": "ASST 1802", + "title": "Arts of Asia" + }, + { + "name": "ASST 1901", + "title": "Honors Chinese and Japanese Literature in Cultural Context" + }, + { + "name": "ASST 1902", + "title": "Honors Introduction to Asian Religions" + }, + { + "name": "ASST 2000", + "title": "Special Topics in Asian Studies I" + }, + { + "name": "ASST 2001", + "title": "Practical Asian Society and Culture" + }, + { + "name": "ASST 2011", + "title": "Survey of Japanese Literature Before 1868" + }, + { + "name": "ASST 2012", + "title": "Modern and Contemporary Japanese Literature in Translation" + }, + { + "name": "ASST 2013", + "title": "Modern and Contemporary Chinese Literature in Translation" + }, + { + "name": "ASST 2014", + "title": "Pre-Modern Chinese Literature" + }, + { + "name": "ASST 2015", + "title": "Tokyo in Literature and Film" + }, + { + "name": "ASST 2016", + "title": "Mystery and Crime Fiction in Japan" + }, + { + "name": "ASST 2017", + "title": "Stories of Parents and Children in Japanese Literature and Film" + }, + { + "name": "ASST 2021", + "title": "Japanese Literature in Film" + }, + { + "name": "ASST 2022", + "title": "Contemporary Chinese Urban Film and Fiction in Translation" + }, + { + "name": "ASST 2030", + "title": "Special Topics I" + }, + { + "name": "ASST 2040", + "title": "Special Topics II" + }, + { + "name": "ASST 2050", + "title": "The Japanese Writer in Focus" + }, + { + "name": "ASST 2074", + "title": "Geography of East and South Asia" + }, + { + "name": "ASST 2096", + "title": "Writing Seminar I" + }, + { + "name": "ASST 2097", + "title": "Asian Diaspora" + }, + { + "name": "ASST 2098", + "title": "Japanese Popular Culture and its Literature" + }, + { + "name": "ASST 2101", + "title": "Religions of India" + }, + { + "name": "ASST 2102", + "title": "Introduction to Buddhism" + }, + { + "name": "ASST 2107", + "title": "Asian American Experiences" + }, + { + "name": "ASST 2111", + "title": "Japanese Literature: From Classical to Contemporary" + }, + { + "name": "ASST 2112", + "title": "Chinese Literature: From Classical to Contemporary" + }, + { + "name": "ASST 2196", + "title": "Writing in the City" + }, + { + "name": "ASST 2201", + "title": "Chinese Religions" + }, + { + "name": "ASST 2217", + "title": "The Vietnam War" + }, + { + "name": "ASST 2238", + "title": "Visual Anthropology of Modern Japan" + }, + { + "name": "ASST 2301", + "title": "Introduction to Zen Buddhism" + }, + { + "name": "ASST 2351", + "title": "Japan in a Changing World" + }, + { + "name": "ASST 2367", + "title": "South Asia: Peoples, Culture, Experiences" + }, + { + "name": "ASST 2373", + "title": "Japanese Culture" + }, + { + "name": "ASST 2374", + "title": "The Anthropology of Modern China" + }, + { + "name": "ASST 2501", + "title": "Introduction to East Asia: China" + }, + { + "name": "ASST 2502", + "title": "Introduction to East Asia: Japan" + }, + { + "name": "ASST 2503", + "title": "Introduction to Southeast Asia: Insular" + }, + { + "name": "ASST 2504", + "title": "Introduction to Southeast Asia: Mainland" + }, + { + "name": "ASST 2511", + "title": "Introduction to Asian Business" + }, + { + "name": "ASST 2606", + "title": "Introduction to Islam" + }, + { + "name": "ASST 2696", + "title": "Introduction to Islam" + }, + { + "name": "ASST 2807", + "title": "East Meets West" + }, + { + "name": "ASST 2815", + "title": "Japanese Art" + }, + { + "name": "ASST 2818", + "title": "Art of India" + }, + { + "name": "ASST 2903", + "title": "Honors Ethnic and Social Minorities in Japan" + }, + { + "name": "ASST 2921", + "title": "Honors Japanese Literature in Film" + }, + { + "name": "ASST 3000", + "title": "Special Topics in Asian Studies II" + }, + { + "name": "ASST 3001", + "title": "Earth Ethics" + }, + { + "name": "ASST 3011", + "title": "Monks, Masters, and Magicians: Religion in Premodern Chinese Literature" + }, + { + "name": "ASST 3030", + "title": "Special Topics III" + }, + { + "name": "ASST 3031", + "title": "Women in Chinese Literature" + }, + { + "name": "ASST 3040", + "title": "Special Topics IV" + }, + { + "name": "ASST 3052", + "title": "Environmental Problems in Asia" + }, + { + "name": "ASST 3076", + "title": "Metropolitan Tokyo" + }, + { + "name": "ASST 3082", + "title": "Independent Study" + }, + { + "name": "ASST 3096", + "title": "Writing Seminar II" + }, + { + "name": "ASST 3101", + "title": "Yoga and Tantric Mysticism" + }, + { + "name": "ASST 3201", + "title": "I-Ching, Tao, and Ch'an/Zen" + }, + { + "name": "ASST 3247", + "title": "Ideology and Social Change in Japan" + }, + { + "name": "ASST 3251", + "title": "China: State and Society" + }, + { + "name": "ASST 3252", + "title": "East Asia and the United States" + }, + { + "name": "ASST 3301", + "title": "Japanese Religions" + }, + { + "name": "ASST 3302", + "title": "Japanese Buddhism" + }, + { + "name": "ASST 3521", + "title": "Chinese Revolution" + }, + { + "name": "ASST 3522", + "title": "Contemporary China" + }, + { + "name": "ASST 3531", + "title": "Modern India" + }, + { + "name": "ASST 3541", + "title": "Japan Today" + }, + { + "name": "ASST 3542", + "title": "Women and Society in Japan" + }, + { + "name": "ASST 3551", + "title": "History of Vietnam" + }, + { + "name": "ASST 3556", + "title": "Vietnam, 1945-1992: Resistance, War, and Society" + }, + { + "name": "ASST 3636", + "title": "Asian Women in Transition" + }, + { + "name": "ASST 3696", + "title": "Asian Women in Transition" + }, + { + "name": "ASST 3880", + "title": "Topics in Comparative History" + }, + { + "name": "ASST 3900", + "title": "Honors Topics in Asian Studies II" + }, + { + "name": "ASST 3904", + "title": "Honors Earth Ethics" + }, + { + "name": "ASST 3928", + "title": "Honors Metropolitan Tokyo" + }, + { + "name": "ASST 3942", + "title": "Honors Women and Society in Japan" + }, + { + "name": "ASST 3947", + "title": "Honors Ideology and Social Change in Japan" + }, + { + "name": "ASST 4096", + "title": "Seminar in Asian Studies" + }, + { + "name": "ASST 4268", + "title": "Indian Philosophy: An Introduction" + }, + { + "name": "ASST 4624", + "title": "Modern Japan: Empire, War, Society" + }, + { + "name": "ASST 4696", + "title": "Modern Japan: Empire, War, Society" + }, + { + "name": "ASST 4901", + "title": "Honors Comparative Philosophy of Religions" + }, + { + "name": "ASST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ASST F000", + "title": "* See Statement Below" + }, + { + "name": "ASST L000", + "title": "Elective LL" + }, + { + "name": "ASST P000", + "title": "Elective P" + }, + { + "name": "ASST T000", + "title": "Elective" + }, + { + "name": "ASST U000", + "title": "Elective UL" + }, + { + "name": "BIOE 0844", + "title": "The Bionic Human" + }, + { + "name": "BIOE 0856", + "title": "Ethical Issues in Biomedical Science, Engineering and Technology" + }, + { + "name": "BIOE 0944", + "title": "Honors Bionic Human" + }, + { + "name": "BIOE 2001", + "title": "Frontiers in Bioengineering" + }, + { + "name": "BIOE 2101", + "title": "Engineering Principles of Physiological Systems" + }, + { + "name": "BIOE 2301", + "title": "Quantitative Pathophysiology" + }, + { + "name": "BIOE 2302", + "title": "Cellular and Molecular Biology for Bioengineers" + }, + { + "name": "BIOE 2312", + "title": "Mechanics for Bioengineering I" + }, + { + "name": "BIOE 2401", + "title": "Biodesign - Needs and Ideation" + }, + { + "name": "BIOE 3001", + "title": "Research Design and Methods in Bioengineering" + }, + { + "name": "BIOE 3101", + "title": "BioE Lab #1 - Bioelectrical Engineering" + }, + { + "name": "BIOE 3102", + "title": "BioE Lab #2 - Biomaterials" + }, + { + "name": "BIOE 3201", + "title": "Biomedical Instrumentation" + }, + { + "name": "BIOE 3301", + "title": "Biomedical Signals and Systems" + }, + { + "name": "BIOE 3302", + "title": "Drug Delivery" + }, + { + "name": "BIOE 3303", + "title": "Biotransport Phenomena" + }, + { + "name": "BIOE 3312", + "title": "Mechanics for Bioengineering II" + }, + { + "name": "BIOE 3331", + "title": "Principles of Macromolecular Science" + }, + { + "name": "BIOE 3401", + "title": "Biodesign - Testing and Validation" + }, + { + "name": "BIOE 3511", + "title": "Interactions of Biomaterials with Living Tissues" + }, + { + "name": "BIOE 3719", + "title": "Introduction to Bioengineering" + }, + { + "name": "BIOE 3725", + "title": "Cell Biology for Engineers" + }, + { + "name": "BIOE 4101", + "title": "BioE Lab #3 - Biomechanics" + }, + { + "name": "BIOE 4182", + "title": "Independent Study in Bioengineering" + }, + { + "name": "BIOE 4278", + "title": "Cardiac Devices" + }, + { + "name": "BIOE 4301", + "title": "Bioengineering Seminar" + }, + { + "name": "BIOE 4311", + "title": "The Entrepreneurial Bioengineer" + }, + { + "name": "BIOE 4333", + "title": "Applied Biospectroscopy" + }, + { + "name": "BIOE 4411", + "title": "Capstone Elective: Biomaterials" + }, + { + "name": "BIOE 4421", + "title": "Capstone Elective: Bionanotechnology" + }, + { + "name": "BIOE 4431", + "title": "Capstone Elective: Neuroengineering" + }, + { + "name": "BIOE 4441", + "title": "Capstone Elective: Biomechanics" + }, + { + "name": "BIOE 4451", + "title": "Capstone Elective: Biomedical Imaging" + }, + { + "name": "BIOE 4461", + "title": "Capstone Elective: Principles of Tissue Engineering" + }, + { + "name": "BIOE 4500", + "title": "Special Topics in Bioengineering" + }, + { + "name": "BIOE 4501", + "title": "Regenerative Engineering" + }, + { + "name": "BIOE 4555", + "title": "Capstone Elective - Biophotonics: Seeing is Believing" + }, + { + "name": "BIOE 4741", + "title": "Biomaterials for Engineers" + }, + { + "name": "BIOE 5301", + "title": "Biosignals" + }, + { + "name": "BIOE 5311", + "title": "The Entrepreneurial Bioengineer" + }, + { + "name": "BIOE 5321", + "title": "Biosensors" + }, + { + "name": "BIOE 5333", + "title": "Applied Biospectroscopy" + }, + { + "name": "BIOE 5421", + "title": "Capstone Elective: Bionanotechnology" + }, + { + "name": "BIOE 5431", + "title": "Neuroengineering" + }, + { + "name": "BIOE 5441", + "title": "Biomechanics" + }, + { + "name": "BIOE 5451", + "title": "Biomedical Imaging" + }, + { + "name": "BIOE 5461", + "title": "Principles of Tissue Engineering" + }, + { + "name": "BIOE 5500", + "title": "Special Topics in Bioengineering" + }, + { + "name": "BIOE 5501", + "title": "Regenerative Engineering" + }, + { + "name": "BIOE 5555", + "title": "Biophotonics: Seeing is Believing" + }, + { + "name": "BIOE 5600", + "title": "Bioengineering Graduate Seminar" + }, + { + "name": "BIOE 5719", + "title": "Introduction to Bioengineering" + }, + { + "name": "BIOE 5721", + "title": "Cell Biology for Engineers" + }, + { + "name": "BIOE 5737", + "title": "Systems Physiology for Engineers" + }, + { + "name": "BIOE 5741", + "title": "Biomaterials for Engineers" + }, + { + "name": "BIOE 5999", + "title": "Research Experience in Bioengineering" + }, + { + "name": "BIOE 9182", + "title": "Independent Study" + }, + { + "name": "BIOE 9282", + "title": "Independent Study II" + }, + { + "name": "BIOE 9991", + "title": "Directed Research" + }, + { + "name": "BIOE 9994", + "title": "BioEngineering Preliminary Examination Preparation" + }, + { + "name": "BIOE 9995", + "title": "BioEngineering Project Research" + }, + { + "name": "BIOE 9996", + "title": "BioEngineering Thesis Research" + }, + { + "name": "BIOE 9998", + "title": "Bioengineering Pre-Dissertation Research" + }, + { + "name": "BIOE 9999", + "title": "BioEngineering Dissertation Research" + }, + { + "name": "BIOE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "BIOL 0848", + "title": "DNA: Friend or Foe" + }, + { + "name": "BIOL 0948", + "title": "Honors DNA: Friend or Foe" + }, + { + "name": "BIOL 1001", + "title": "Human Biology" + }, + { + "name": "BIOL 1004", + "title": "Medical Terminology for Pre-Medical Post-Baccalaureates" + }, + { + "name": "BIOL 1009", + "title": "Biological Reasoning" + }, + { + "name": "BIOL 1011", + "title": "General Biology I" + }, + { + "name": "BIOL 1012", + "title": "General Biology II" + }, + { + "name": "BIOL 1111", + "title": "Introduction to Organismal Biology" + }, + { + "name": "BIOL 1211", + "title": "Basic Core Introduction to Biology for Pre-Medical Post-Baccalaureates II" + }, + { + "name": "BIOL 1911", + "title": "Honors Introduction to Organismal Biology" + }, + { + "name": "BIOL 2001", + "title": "Clinical Microbiology" + }, + { + "name": "BIOL 2003", + "title": "Introductory Laboratory for Transfer Students" + }, + { + "name": "BIOL 2005", + "title": "Laboratory for Transfer Students" + }, + { + "name": "BIOL 2082", + "title": "Independent Research I" + }, + { + "name": "BIOL 2112", + "title": "Introduction to Cellular and Molecular Biology" + }, + { + "name": "BIOL 2133", + "title": "Human Anatomy" + }, + { + "name": "BIOL 2211", + "title": "Basic Core Introduction to Biology for Pre-Medical Post-Baccalaureates II" + }, + { + "name": "BIOL 2212", + "title": "Basic Core Introduction to Biology for Pre-Medical Post-Baccalaureates I" + }, + { + "name": "BIOL 2227", + "title": "Principles of Ecology" + }, + { + "name": "BIOL 2233", + "title": "Mammalian Anatomy" + }, + { + "name": "BIOL 2234", + "title": "Dinosaur Paleobiology" + }, + { + "name": "BIOL 2235", + "title": "General Histology" + }, + { + "name": "BIOL 2241", + "title": "Invertebrate Biology" + }, + { + "name": "BIOL 2296", + "title": "Genetics" + }, + { + "name": "BIOL 2812", + "title": "Principles of Medical Genetics" + }, + { + "name": "BIOL 2912", + "title": "Honors Introduction to Cellular and Molecular Biology" + }, + { + "name": "BIOL 3082", + "title": "Independent Research II" + }, + { + "name": "BIOL 3083", + "title": "Directed Readings" + }, + { + "name": "BIOL 3091", + "title": "Research Methods" + }, + { + "name": "BIOL 3096", + "title": "Cell Structure and Function" + }, + { + "name": "BIOL 3101", + "title": "Evolution" + }, + { + "name": "BIOL 3111", + "title": "Genomics in Medicine" + }, + { + "name": "BIOL 3112", + "title": "Fundamentals of Genomic Evolutionary Medicine" + }, + { + "name": "BIOL 3113", + "title": "Genome Analytics" + }, + { + "name": "BIOL 3114", + "title": "Evolutionary Ecology" + }, + { + "name": "BIOL 3128", + "title": "Genomics and Infectious Disease Dynamics" + }, + { + "name": "BIOL 3181", + "title": "Cooperative Research in Biochemistry" + }, + { + "name": "BIOL 3201", + "title": "Human Genetics" + }, + { + "name": "BIOL 3211", + "title": "Human Evolution" + }, + { + "name": "BIOL 3212", + "title": "Introduction to Bioinformatics and Computational Biology" + }, + { + "name": "BIOL 3214", + "title": "Theoretical Population Genetics" + }, + { + "name": "BIOL 3225", + "title": "Evolutionary Genetics" + }, + { + "name": "BIOL 3232", + "title": "Behavioral Genetics" + }, + { + "name": "BIOL 3241", + "title": "Genomics and Evolutionary Biology of Parasites and Other Dependent Species" + }, + { + "name": "BIOL 3243", + "title": "Parasitology" + }, + { + "name": "BIOL 3244", + "title": "Experimental Marine Biology" + }, + { + "name": "BIOL 3245", + "title": "Marine Ecology" + }, + { + "name": "BIOL 3254", + "title": "Animal Behavior" + }, + { + "name": "BIOL 3255", + "title": "Critical Thinking in Biology" + }, + { + "name": "BIOL 3265", + "title": "Developmental Biology" + }, + { + "name": "BIOL 3268", + "title": "Fundamentals of Cell and Cancer Biology" + }, + { + "name": "BIOL 3275", + "title": "Ecology of Invasive Species" + }, + { + "name": "BIOL 3281", + "title": "Cooperative Research in Biochemistry" + }, + { + "name": "BIOL 3301", + "title": "Advanced Cell Biology" + }, + { + "name": "BIOL 3307", + "title": "Conservation Biology" + }, + { + "name": "BIOL 3311", + "title": "Herpetology" + }, + { + "name": "BIOL 3312", + "title": "Biostatistics" + }, + { + "name": "BIOL 3316", + "title": "Tropical Marine Biology" + }, + { + "name": "BIOL 3317", + "title": "General Microbiology" + }, + { + "name": "BIOL 3321", + "title": "Plant Community Ecology" + }, + { + "name": "BIOL 3322", + "title": "Biology of Plants" + }, + { + "name": "BIOL 3323", + "title": "Global Change Science: Analytics with R" + }, + { + "name": "BIOL 3324", + "title": "Molecular Biology" + }, + { + "name": "BIOL 3325", + "title": "Research Techniques in Molecular Biology" + }, + { + "name": "BIOL 3327", + "title": "Immunology" + }, + { + "name": "BIOL 3328", + "title": "Virology" + }, + { + "name": "BIOL 3329", + "title": "Developmental Genetics" + }, + { + "name": "BIOL 3333", + "title": "Advanced Techniques in Microscopy" + }, + { + "name": "BIOL 3334", + "title": "Mammalian Physiology" + }, + { + "name": "BIOL 3335", + "title": "Life at the Extremes - Polar Biology" + }, + { + "name": "BIOL 3336", + "title": "Freshwater Ecology" + }, + { + "name": "BIOL 3337", + "title": "Comparative Biomechanics" + }, + { + "name": "BIOL 3352", + "title": "Systems Neuroscience" + }, + { + "name": "BIOL 3354", + "title": "Neural Basis of Animal Behavior" + }, + { + "name": "BIOL 3356", + "title": "Organization and Development of the Nervous System" + }, + { + "name": "BIOL 3358", + "title": "Cellular and Molecular Neuroscience" + }, + { + "name": "BIOL 3361", + "title": "Molecular Neuropharmacology" + }, + { + "name": "BIOL 3363", + "title": "Mammalian Development" + }, + { + "name": "BIOL 3364", + "title": "Theory and Applications of Cancer Biology" + }, + { + "name": "BIOL 3365", + "title": "The New Neuroimmunology" + }, + { + "name": "BIOL 3367", + "title": "Endocrinology" + }, + { + "name": "BIOL 3368", + "title": "Biology of Cancer" + }, + { + "name": "BIOL 3371", + "title": "Cell Proliferation" + }, + { + "name": "BIOL 3372", + "title": "The Molecular Regulation of Cell Migration and Morphogenesis During Development and Disease" + }, + { + "name": "BIOL 3373", + "title": "Cell Signaling" + }, + { + "name": "BIOL 3374", + "title": "Physical Biochemistry" + }, + { + "name": "BIOL 3379", + "title": "Biotechnology" + }, + { + "name": "BIOL 3380", + "title": "Contemporary Biology" + }, + { + "name": "BIOL 3396", + "title": "Scientific Writing for Biology: The Art of Communicating" + }, + { + "name": "BIOL 3403", + "title": "Genomic Biology" + }, + { + "name": "BIOL 3681", + "title": "Cooperative Studies" + }, + { + "name": "BIOL 3685", + "title": "Externship Studies" + }, + { + "name": "BIOL 3941", + "title": "Honors Broader Impacts: The Art of Scientific Communication" + }, + { + "name": "BIOL 4201", + "title": "The Practice of Health Care: Competencies and Current Topics" + }, + { + "name": "BIOL 4218", + "title": "Principles of Medical Genetics for Pre-Medical Post-Baccalaureates" + }, + { + "name": "BIOL 4233", + "title": "Human Anatomy for Pre-Medical Post-Baccalaureates" + }, + { + "name": "BIOL 4234", + "title": "Human Anatomy Lab for Pre-Medical Post-Baccalaureates" + }, + { + "name": "BIOL 4268", + "title": "Fundamentals of Cell and Cancer Biology for Pre-Medical Post-Baccalaureates" + }, + { + "name": "BIOL 4275", + "title": "Fundamentals of Medical Biochemistry" + }, + { + "name": "BIOL 4291", + "title": "Extradepartmental Research" + }, + { + "name": "BIOL 4327", + "title": "Biological Impacts of Global Climate Change" + }, + { + "name": "BIOL 4338", + "title": "Epigenetics" + }, + { + "name": "BIOL 4341", + "title": "Genome Editing" + }, + { + "name": "BIOL 4344", + "title": "Research Techniques in Biochemistry" + }, + { + "name": "BIOL 4364", + "title": "Biochemistry of Embryogenesis" + }, + { + "name": "BIOL 4365", + "title": "Evolutionary Developmental Biology: Evo-Devo" + }, + { + "name": "BIOL 4366", + "title": "Stem Cell Biology" + }, + { + "name": "BIOL 4370", + "title": "Advanced Special Topics in Biochemistry" + }, + { + "name": "BIOL 4375", + "title": "General Biochemistry I" + }, + { + "name": "BIOL 4376", + "title": "General Biochemistry II" + }, + { + "name": "BIOL 4391", + "title": "Accelerated Research in Biology" + }, + { + "name": "BIOL 4483", + "title": "Accelerated Research in Biochemistry" + }, + { + "name": "BIOL 4491", + "title": "Research in Biochemistry" + }, + { + "name": "BIOL 4591", + "title": "Research in Neuroscience" + }, + { + "name": "BIOL 5101", + "title": "Evolution" + }, + { + "name": "BIOL 5111", + "title": "Genomics in Medicine" + }, + { + "name": "BIOL 5112", + "title": "Fundamentals of Genomic Evolutionary Medicine" + }, + { + "name": "BIOL 5114", + "title": "Evolutionary Ecology" + }, + { + "name": "BIOL 5128", + "title": "Genomics and Infectious Disease Dynamics" + }, + { + "name": "BIOL 5225", + "title": "Evolutionary Genetics Genomics" + }, + { + "name": "BIOL 5226", + "title": "Innovative Biomodels and Concepts" + }, + { + "name": "BIOL 5227", + "title": "Biomarkers and Biotargets: Research and Commercialization" + }, + { + "name": "BIOL 5228", + "title": "Epigenetics, Genetics: Applications in Drug Design and Drug Response" + }, + { + "name": "BIOL 5229", + "title": "Systems Biology: Principles and Applications" + }, + { + "name": "BIOL 5232", + "title": "Behavioral Genetics" + }, + { + "name": "BIOL 5233", + "title": "Effective Dissemination of Bio-discoveries through Traditional and New Media" + }, + { + "name": "BIOL 5234", + "title": "Bioinnovation Seminar" + }, + { + "name": "BIOL 5235", + "title": "Milestones in Clinical Translation of Biodiscoveries" + }, + { + "name": "BIOL 5236", + "title": "Bioadvanced Screening in Health Disparity" + }, + { + "name": "BIOL 5237", + "title": "Virtual Reality in Bioindustry and Medicine" + }, + { + "name": "BIOL 5239", + "title": "Dissemination of Biodiscoveries and Virtual Reality in Medicine" + }, + { + "name": "BIOL 5241", + "title": "Genomics and Evolutionary Biology of Parasites and Other Dependent Species" + }, + { + "name": "BIOL 5254", + "title": "Animal Behavior" + }, + { + "name": "BIOL 5275", + "title": "Ecology of Invasive Species" + }, + { + "name": "BIOL 5301", + "title": "Cell Biology" + }, + { + "name": "BIOL 5307", + "title": "Conservation Biology" + }, + { + "name": "BIOL 5311", + "title": "Herpetology" + }, + { + "name": "BIOL 5312", + "title": "Biostatistics" + }, + { + "name": "BIOL 5321", + "title": "Plant Community Ecology" + }, + { + "name": "BIOL 5322", + "title": "Biology of Plants" + }, + { + "name": "BIOL 5323", + "title": "Global Change Science: Analytics with R" + }, + { + "name": "BIOL 5325", + "title": "Research Techniques in Molecular Biology" + }, + { + "name": "BIOL 5335", + "title": "Polar Biology - Life at the Extremes" + }, + { + "name": "BIOL 5337", + "title": "Comparative Biomechanics" + }, + { + "name": "BIOL 5338", + "title": "Epigenetics" + }, + { + "name": "BIOL 5358", + "title": "Cellular/Molecular Neuroscience" + }, + { + "name": "BIOL 5361", + "title": "Molecular Neuropharmacology" + }, + { + "name": "BIOL 5366", + "title": "Stem Cell Biology" + }, + { + "name": "BIOL 5403", + "title": "Genomics" + }, + { + "name": "BIOL 5411", + "title": "Structural Bioinformatics I" + }, + { + "name": "BIOL 5416", + "title": "Tropical Marine Biology: Belize" + }, + { + "name": "BIOL 5427", + "title": "Immunology" + }, + { + "name": "BIOL 5428", + "title": "Virology" + }, + { + "name": "BIOL 5429", + "title": "Developmental Genetics" + }, + { + "name": "BIOL 5433", + "title": "Advanced Techniques in Microscopy" + }, + { + "name": "BIOL 5436", + "title": "Freshwater Ecology" + }, + { + "name": "BIOL 5452", + "title": "Systems Neuroscience" + }, + { + "name": "BIOL 5454", + "title": "Neurological Basis of Animal Behavior" + }, + { + "name": "BIOL 5456", + "title": "Organization and Development of the Nervous System" + }, + { + "name": "BIOL 5464", + "title": "Biochemistry of Embryogenesis" + }, + { + "name": "BIOL 5465", + "title": "Mammalian Development" + }, + { + "name": "BIOL 5466", + "title": "Contemporary Biology" + }, + { + "name": "BIOL 5467", + "title": "Endocrinology " + }, + { + "name": "BIOL 5469", + "title": "Molecular Biology" + }, + { + "name": "BIOL 5471", + "title": "Cell Proliferation" + }, + { + "name": "BIOL 5474", + "title": "Physical Biochemistry" + }, + { + "name": "BIOL 5475", + "title": "General Biochemistry I" + }, + { + "name": "BIOL 5476", + "title": "General Biochemistry II" + }, + { + "name": "BIOL 5479", + "title": "Biotechnology" + }, + { + "name": "BIOL 5501", + "title": "Analytical Biotechnology" + }, + { + "name": "BIOL 5502", + "title": "Microbial Biotechnology" + }, + { + "name": "BIOL 5503", + "title": "Biotechnology Laboratory I" + }, + { + "name": "BIOL 5504", + "title": "Biotechnology Laboratory II" + }, + { + "name": "BIOL 5505", + "title": "Ethics Regulation and Policy in Biotechnology" + }, + { + "name": "BIOL 5506", + "title": "Professional Development Seminar for PSM in Biotechnology" + }, + { + "name": "BIOL 5509", + "title": "Computational Genomics" + }, + { + "name": "BIOL 5511", + "title": "Ethics in Bioinformatics" + }, + { + "name": "BIOL 5514", + "title": "Biological Models in Python" + }, + { + "name": "BIOL 5521", + "title": "Nucleic Acid Technologies" + }, + { + "name": "BIOL 5522", + "title": "Introduction to Scientific and Regulatory Writing" + }, + { + "name": "BIOL 5532", + "title": "Introduction to Grant Writing" + }, + { + "name": "BIOL 5533", + "title": "Communicating Science to a Broader Audience / Non-Scientists" + }, + { + "name": "BIOL 5582", + "title": "Graduate Independent Study" + }, + { + "name": "BIOL 8001", + "title": "Teaching of Biology" + }, + { + "name": "BIOL 8002", + "title": "Teaching of Biology" + }, + { + "name": "BIOL 8003", + "title": "Introduction to Graduate Research" + }, + { + "name": "BIOL 8210", + "title": "Seminar" + }, + { + "name": "BIOL 8220", + "title": "Seminar" + }, + { + "name": "BIOL 8250", + "title": "Seminar" + }, + { + "name": "BIOL 8260", + "title": "Seminar" + }, + { + "name": "BIOL 8450", + "title": "Seminar" + }, + { + "name": "BIOL 8510", + "title": "Seminar in Neuroscience" + }, + { + "name": "BIOL 8802", + "title": "Research Techniques" + }, + { + "name": "BIOL 8985", + "title": "Teaching in Higher Education: Life Sciences" + }, + { + "name": "BIOL 9283", + "title": "Directed Readings" + }, + { + "name": "BIOL 9991", + "title": "Master's Research Projects" + }, + { + "name": "BIOL 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "BIOL 9995", + "title": "Capstone Project" + }, + { + "name": "BIOL 9996", + "title": "Master's Thesis Research" + }, + { + "name": "BIOL 9998", + "title": "Pre-Dissertation Research / Elevation to Candidacy" + }, + { + "name": "BIOL 9999", + "title": "Dissertation Research" + }, + { + "name": "BIOL A000", + "title": "Elective UL" + }, + { + "name": "BIOL E000", + "title": "Elective - needs evaluation" + }, + { + "name": "BIOL F000", + "title": "* See Statement Below" + }, + { + "name": "BIOL L000", + "title": "Elective LL" + }, + { + "name": "BIOL P000", + "title": "Elective P" + }, + { + "name": "BIOL U000", + "title": "Elective UL" + }, + { + "name": "BIOL U001", + "title": "Elective UL" + }, + { + "name": "BMSC 8001", + "title": "Introduction to Biochemistry and Molecular Biology" + }, + { + "name": "BMSC 8002", + "title": "Introduction to Cell Biology and Immunology" + }, + { + "name": "BMSC 8003", + "title": "Introduction to Molecular and Cell Biology" + }, + { + "name": "BMSC 8101", + "title": "Molecules to Cells" + }, + { + "name": "BMSC 8102", + "title": "Experimental Design and Biostatistics" + }, + { + "name": "BMSC 8103", + "title": "Scientific Integrity and Bioethics" + }, + { + "name": "BMSC 8104", + "title": "Introduction to Laboratory Research I" + }, + { + "name": "BMSC 8201", + "title": "Organ Systems: Function, Dysfunction and Therapeutics" + }, + { + "name": "BMSC 8202", + "title": "Scientific Communications" + }, + { + "name": "BMSC 8203", + "title": "Bioinformatics" + }, + { + "name": "BMSC 8204", + "title": "Introduction to Laboratory Research II" + }, + { + "name": "BMSC 8205", + "title": "Cell Structure & Function" + }, + { + "name": "BMSC 8206", + "title": "Molecular, Cellular and Systems Signal Transduction" + }, + { + "name": "BMSC 8207", + "title": "Molecular Approaches to Research" + }, + { + "name": "BMSC 8401", + "title": "Scientific Grant Writing" + }, + { + "name": "BMSC 8500", + "title": "Cancer Biology and Genetics Student Seminar and Journal Club" + }, + { + "name": "BMSC 8502", + "title": "Cancer Biology" + }, + { + "name": "BMSC 8503", + "title": "Genetics and Epigenetics" + }, + { + "name": "BMSC 8510", + "title": "Special Topics in Cancer Biology and Genetics" + }, + { + "name": "BMSC 8600", + "title": "Infectious Disease and Immunity Student Seminar and Journal Club" + }, + { + "name": "BMSC 8602", + "title": "The Biology of the Immune Response" + }, + { + "name": "BMSC 8603", + "title": "Molecular Genetics of Human Viruses" + }, + { + "name": "BMSC 8604", + "title": "Cellular and Molecular Basis of Host-Microbe Interactions" + }, + { + "name": "BMSC 8610", + "title": "Special Topics in Infectious Disease and Immunity" + }, + { + "name": "BMSC 8700", + "title": "Molecular and Cellular Biosciences Student Seminar and Journal Club" + }, + { + "name": "BMSC 8702", + "title": "Enzymes and Proteins" + }, + { + "name": "BMSC 8703", + "title": "RNA and its Role in Gene Expression" + }, + { + "name": "BMSC 8704", + "title": "Molecular Physiology of Ion Signaling" + }, + { + "name": "BMSC 8705", + "title": "Biophysical Approaches to Research" + }, + { + "name": "BMSC 8706", + "title": "Structure and Dynamics of Biomolecules and Assemblies" + }, + { + "name": "BMSC 8710", + "title": "Special Topics in Molecular and Cellular Biosciences" + }, + { + "name": "BMSC 8800", + "title": "Neuroscience Student Seminar and Journal Club" + }, + { + "name": "BMSC 8802", + "title": "Essentials of Neuroscience" + }, + { + "name": "BMSC 8803", + "title": "Molecular and Cellular Neuroscience" + }, + { + "name": "BMSC 8804", + "title": "Neuropharmacology" + }, + { + "name": "BMSC 8805", + "title": "Pharmacology of Drugs of Abuse" + }, + { + "name": "BMSC 8806", + "title": "Translational Science of Nervous System Diseases" + }, + { + "name": "BMSC 8807", + "title": "Developmental Neurobiology" + }, + { + "name": "BMSC 8810", + "title": "Special Topics in Neuroscience" + }, + { + "name": "BMSC 8900", + "title": "Organ Systems and Translational Medicine Student Seminar and Journal Club" + }, + { + "name": "BMSC 8902", + "title": "Mechanisms of Cardiovascular Pathophysiology" + }, + { + "name": "BMSC 8903", + "title": "Hemostasis and Thrombosis" + }, + { + "name": "BMSC 8904", + "title": "Translational Pulmonary Physiology - Experimental Basis" + }, + { + "name": "BMSC 8905", + "title": "Advanced Pharmacology and Translational Medicine" + }, + { + "name": "BMSC 8906", + "title": "Development, Function and Diseases of the Musculoskeletal System" + }, + { + "name": "BMSC 8907", + "title": "Organ Metabolism - Molecular Pathology and Experimental Models" + }, + { + "name": "BMSC 8910", + "title": "Special Topics in Organ Systems and Translational Medicine" + }, + { + "name": "BMSC 9991", + "title": "Biomedical Science Research" + }, + { + "name": "BMSC 9994", + "title": "Preliminary Exam Preparation" + }, + { + "name": "BMSC 9995", + "title": "Master's Project" + }, + { + "name": "BMSC 9996", + "title": "Master's Thesis" + }, + { + "name": "BMSC 9998", + "title": "Postcandidacy Research" + }, + { + "name": "BMSC 9999", + "title": "Dissertation Writing" + }, + { + "name": "BOT 1111", + "title": "General Botany" + }, + { + "name": "BOT 1112", + "title": "Plant Ecology" + }, + { + "name": "BOT 2121", + "title": "Plant Physiology" + }, + { + "name": "BOT 2156", + "title": "Plant Genetics and Diversity" + }, + { + "name": "BOT 3122", + "title": "Applied Plant Physiology" + }, + { + "name": "BOT 3166", + "title": "Plant Taxonomy" + }, + { + "name": "BOT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "BOT L000", + "title": "Elective LL" + }, + { + "name": "BOT T000", + "title": "Elective" + }, + { + "name": "BOT U000", + "title": "Elective UL" + }, + { + "name": "BCMD 0830", + "title": "GenEd Limited Edition GD" + }, + { + "name": "BCMD 0930", + "title": "Honors GenEd Limited Edition GD" + }, + { + "name": "BA 1001", + "title": "Business Seminar I" + }, + { + "name": "BA 1002", + "title": "Business Seminar II" + }, + { + "name": "BA 1901", + "title": "Honors Research Methods in Business" + }, + { + "name": "BA 2101", + "title": "Professional Development Strategies" + }, + { + "name": "BA 2104", + "title": "Excel for Business Applications" + }, + { + "name": "BA 2196", + "title": "Business Communications" + }, + { + "name": "BA 2996", + "title": "Honors Business Communications" + }, + { + "name": "BA 3102", + "title": "Business Society and Ethics" + }, + { + "name": "BA 3103", + "title": "Integrative Business Applications" + }, + { + "name": "BA 3531", + "title": "Sustainability on the Ground" + }, + { + "name": "BA 3580", + "title": "Special Topics - Business Administration" + }, + { + "name": "BA 3581", + "title": "Co-operative Experience in Business" + }, + { + "name": "BA 3582", + "title": "Independent Study" + }, + { + "name": "BA 3902", + "title": "Honors Business Society and Ethics" + }, + { + "name": "BA 3903", + "title": "Honors Integrative Business Applications" + }, + { + "name": "BA 4101", + "title": "Global Business Policies" + }, + { + "name": "BA 4196", + "title": "Global Business Policies" + }, + { + "name": "BA 4901", + "title": "Honors Global Business Policies" + }, + { + "name": "BA 4996", + "title": "Honors Global Business Policies" + }, + { + "name": "BA 5001", + "title": "Industrial Organization for Business Strategy" + }, + { + "name": "BA 5002", + "title": "Socioeconomic Context of Business" + }, + { + "name": "BA 5003", + "title": "Legal and Ethical Foundations of Business" + }, + { + "name": "BA 5051", + "title": "Enterprise Management Consulting Experience (EMC) I" + }, + { + "name": "BA 5052", + "title": "Enterprise Management Consulting Experience (EMC) II" + }, + { + "name": "BA 5087", + "title": "Leadership and Professional Development Practicum" + }, + { + "name": "BA 5088", + "title": "Ethical Decision Making in Business and Professional Development Practicum" + }, + { + "name": "BA 5111", + "title": "Globalization" + }, + { + "name": "BA 5112", + "title": "Managing Risk" + }, + { + "name": "BA 5113", + "title": "The Valuation of Firms" + }, + { + "name": "BA 5114", + "title": "Entrepreneurial Thinking and Innovation" + }, + { + "name": "BA 5115", + "title": "Law and Ethics in Business" + }, + { + "name": "BA 5116", + "title": "Information Technology Perspectives" + }, + { + "name": "BA 5117", + "title": "Managing People and Organizations" + }, + { + "name": "BA 5118", + "title": "Strategic Performance Management" + }, + { + "name": "BA 5170", + "title": "Special Topics" + }, + { + "name": "BA 5180", + "title": "Special Topics" + }, + { + "name": "BA 5182", + "title": "Independent Study" + }, + { + "name": "BA 5187", + "title": "IMBA Practicum: Corporate Visits and Mentoring" + }, + { + "name": "BA 5190", + "title": "Special Topics" + }, + { + "name": "BA 5282", + "title": "Independent Study" + }, + { + "name": "BA 5287", + "title": "Enterprise Management Consulting Practicum" + }, + { + "name": "BA 5387", + "title": "Advanced Professional Development Strategies" + }, + { + "name": "BA 5388", + "title": "Enterprise Management Consulting Practicum" + }, + { + "name": "BA 5389", + "title": "Global Immersion Experience" + }, + { + "name": "BA 5601", + "title": "Corporate Instructional Design Theory" + }, + { + "name": "BA 5602", + "title": "Managing Multimedia and Web Development for Instructional Design" + }, + { + "name": "BA 5603", + "title": "Authoring" + }, + { + "name": "BA 5604", + "title": "Instructional Design Learning Analytics" + }, + { + "name": "BA 5651", + "title": "Business Analytics Capstone" + }, + { + "name": "BA 5687", + "title": "MS Advanced Professional Development Strategies" + }, + { + "name": "BA 5751", + "title": "Multinational Management and Policy" + }, + { + "name": "BA 5800", + "title": "Special Topics" + }, + { + "name": "BA 5801", + "title": "Industrial Organization and Corporate Strategy" + }, + { + "name": "BA 5804", + "title": "Global Enterprise Mgt" + }, + { + "name": "BA 5851", + "title": "Strategy Formulation and Administration" + }, + { + "name": "BA 5882", + "title": "Independent Study" + }, + { + "name": "BA 5890", + "title": "Special Topics" + }, + { + "name": "BA 5955", + "title": "Policy Formulation and Administration" + }, + { + "name": "BA 8985", + "title": "Teaching in Higher Education: Business" + }, + { + "name": "BA 9001", + "title": "Organizations and Management Theory" + }, + { + "name": "BA 9002", + "title": "Scientific Inquiry-Management Research" + }, + { + "name": "BA 9003", + "title": "Seminar in Organizational Behavior" + }, + { + "name": "BA 9090", + "title": "Special Topics in Business Administration" + }, + { + "name": "BA 9103", + "title": "Econ Theory of Choice" + }, + { + "name": "BA 9104", + "title": "Game Theory" + }, + { + "name": "BA 9105", + "title": "Bus Rsrch Econometrics I" + }, + { + "name": "BA 9106", + "title": "Bus Rsch Econometrics II" + }, + { + "name": "BA 9108", + "title": "Capital Markets Research" + }, + { + "name": "BA 9183", + "title": "Directed Study in Business" + }, + { + "name": "BA 9201", + "title": "Quant Methods in Bus Res" + }, + { + "name": "BA 9202", + "title": "Qualitative Research Methods" + }, + { + "name": "BA 9203", + "title": "Financial Economics" + }, + { + "name": "BA 9205", + "title": "Information Economics" + }, + { + "name": "BA 9207", + "title": "Quantitative Research Methods II" + }, + { + "name": "BA 9208", + "title": "Quantitative Research Methods III" + }, + { + "name": "BA 9209", + "title": "Business Econometrics III" + }, + { + "name": "BA 9212", + "title": "Seminar in Global Finance and Governance" + }, + { + "name": "BA 9801", + "title": "Understanding the Firm through Management and Organizational Theory" + }, + { + "name": "BA 9802", + "title": "Scientific Inquiry through Applied Research" + }, + { + "name": "BA 9803", + "title": "Navigating the Global Marketplace" + }, + { + "name": "BA 9806", + "title": "Integrative Perspectives on Business Knowledge" + }, + { + "name": "BA 9812", + "title": "Innovation and Entrepreneurship in the New Economy" + }, + { + "name": "BA 9813", + "title": "Problem Solving using Quantitative Research Methods" + }, + { + "name": "BA 9814", + "title": "Advanced Quantitative Research Methods" + }, + { + "name": "BA 9815", + "title": "Problem Solving using Qualitative Research Methods" + }, + { + "name": "BA 9816", + "title": "Creation and Dissemination of Business Knowledge" + }, + { + "name": "BA 9883", + "title": "Directed Reading/Study" + }, + { + "name": "BA 9890", + "title": "Special Topics in Business Research" + }, + { + "name": "BA 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "BA 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "BA 9999", + "title": "Dissertation Research" + }, + { + "name": "BA E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CTE 3101", + "title": "Principles of Career and Technical Education" + }, + { + "name": "CTE 3102", + "title": "Teaching Strategies in Career and Technical Education" + }, + { + "name": "CTE 3103", + "title": "Curriculum in Career and Technical Education" + }, + { + "name": "CTE 3372", + "title": "Project-Based Technical Instruction for Children" + }, + { + "name": "CTE 3389", + "title": "Supervised Work Experience" + }, + { + "name": "CTE 4285", + "title": "Industry Education Capstone and Field Experience for Work-Based Learning" + }, + { + "name": "CTE 4300", + "title": "Wkshp Vocational Ed" + }, + { + "name": "CTE 4315", + "title": "Credit by Examination" + }, + { + "name": "CTE 4324", + "title": "Industry-Based Coordination Methods for Work-Based Learning" + }, + { + "name": "CTE 4331", + "title": "Industry-Based Instructional Methods for Work-Based Learning" + }, + { + "name": "CTE 5401", + "title": "Current Problems in Career and Technical Education" + }, + { + "name": "CTE 5411", + "title": "Evaluation in Career and Technical Education" + }, + { + "name": "CTE 5423", + "title": "Leadership in Career and Technical Education" + }, + { + "name": "CTE 5426", + "title": "Professionalism and Staff Development" + }, + { + "name": "CTE 5669", + "title": "Project-Based Learning" + }, + { + "name": "CTE 5887", + "title": "Pedagogical Competence" + }, + { + "name": "CTE 8324", + "title": "Coordination Methods for Work-Based Learning" + }, + { + "name": "CTE 8331", + "title": "Instructional Methods for Work-Based Learning" + }, + { + "name": "CTE 8501", + "title": "Curriculum Development for Programs of Study in Career and Technical Education" + }, + { + "name": "CTE 8507", + "title": "The Role of Career and Technical Education in Workforce and Economic Development" + }, + { + "name": "CTE 8521", + "title": "Collaborative Processes for Effective Career and Technical Education Programs" + }, + { + "name": "CTE 8527", + "title": "Program Planning, Evaluation, and Systems Alignment in Career and Technical Education" + }, + { + "name": "CTE 8528", + "title": "Creating a Culture of Teaching and Learning in Career and Technical Education Programs" + }, + { + "name": "CTE 8589", + "title": "Managing Resources and Data Driven Decision Making in Career and Technical Education" + }, + { + "name": "CTE 8690", + "title": "Problems in CTE" + }, + { + "name": "CTE 8890", + "title": "Special Topics/Problems in Career and Technical Education" + }, + { + "name": "CTE 9389", + "title": "Supervised Work Experience" + }, + { + "name": "CTE 9482", + "title": "Directed Independent Study" + }, + { + "name": "CTE 9685", + "title": "Internship in Career and Technical Education" + }, + { + "name": "CTE 9885", + "title": "Internship in Career and Technical Education" + }, + { + "name": "CTE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CTE T000", + "title": "Elective" + }, + { + "name": "CHEM 0821", + "title": "Chemistry of Wine" + }, + { + "name": "CHEM 0838", + "title": "Nature Has No Reverse" + }, + { + "name": "CHEM 0877", + "title": "The Chemistry of Global Environmental Issues" + }, + { + "name": "CHEM 1005", + "title": "Practice and Development of Spatial Visualization Skills" + }, + { + "name": "CHEM 1011", + "title": "Chemistry: The Study of Matter I" + }, + { + "name": "CHEM 1021", + "title": "Introduction to Chemistry I" + }, + { + "name": "CHEM 1022", + "title": "Introduction to Chemistry II" + }, + { + "name": "CHEM 1023", + "title": "Introduction to Chemistry Laboratory I" + }, + { + "name": "CHEM 1024", + "title": "Introduction to Chemistry Laboratory II" + }, + { + "name": "CHEM 1027", + "title": "Applications of Chemistry" + }, + { + "name": "CHEM 1031", + "title": "General Chemistry I" + }, + { + "name": "CHEM 1032", + "title": "General Chemistry II" + }, + { + "name": "CHEM 1033", + "title": "General Chemistry Laboratory I" + }, + { + "name": "CHEM 1034", + "title": "General Chemistry Laboratory II" + }, + { + "name": "CHEM 1035", + "title": "Chemistry for Engineers" + }, + { + "name": "CHEM 1051", + "title": "Basic Core General Chemistry I" + }, + { + "name": "CHEM 1052", + "title": "Basic Core General Chemistry II" + }, + { + "name": "CHEM 1053", + "title": "Basic Core General Chemistry Lab I" + }, + { + "name": "CHEM 1054", + "title": "Basic Core General Chemistry Lab II" + }, + { + "name": "CHEM 1055", + "title": "Introduction to Problem Solving and Logical Thinking for Pre-Medical Post-Baccalaureates" + }, + { + "name": "CHEM 1951", + "title": "Honors General Chemical Science I" + }, + { + "name": "CHEM 1952", + "title": "Honors General Chemical Science II" + }, + { + "name": "CHEM 1953", + "title": "Honors Chemical Science Laboratory I" + }, + { + "name": "CHEM 1954", + "title": "Honors Chemical Science Laboratory II" + }, + { + "name": "CHEM 2201", + "title": "Organic Chemistry I" + }, + { + "name": "CHEM 2202", + "title": "Organic Chemistry II" + }, + { + "name": "CHEM 2203", + "title": "Organic Chemistry Laboratory I" + }, + { + "name": "CHEM 2204", + "title": "Organic Chemistry Laboratory II" + }, + { + "name": "CHEM 2211", + "title": "Organic Chemistry for Majors I" + }, + { + "name": "CHEM 2212", + "title": "Organic Chemistry for Majors II" + }, + { + "name": "CHEM 2213", + "title": "Organic Majors Laboratory I" + }, + { + "name": "CHEM 2214", + "title": "Organic Majors Laboratory II" + }, + { + "name": "CHEM 2251", + "title": "Basic Core Organic Chemistry for Pre-Medical Post-Baccalaureates" + }, + { + "name": "CHEM 2253", + "title": "Basic Core Organic Chemistry Lab" + }, + { + "name": "CHEM 2891", + "title": "Introduction to Undergraduate Research" + }, + { + "name": "CHEM 2921", + "title": "Organic Chemistry for Honors I" + }, + { + "name": "CHEM 2922", + "title": "Organic Chemistry for Honors II" + }, + { + "name": "CHEM 2923", + "title": "Organic Honors Laboratory I" + }, + { + "name": "CHEM 2924", + "title": "Organic Honors Laboratory II" + }, + { + "name": "CHEM 3001", + "title": "Inorganic Chemistry" + }, + { + "name": "CHEM 3091", + "title": "Research Methods" + }, + { + "name": "CHEM 3103", + "title": "Techniques of Chemical Measurement I" + }, + { + "name": "CHEM 3105", + "title": "Introduction to Chemical Research Techniques" + }, + { + "name": "CHEM 3301", + "title": "Physical Chemistry Lecture I" + }, + { + "name": "CHEM 3302", + "title": "Physical Chemistry Lecture II" + }, + { + "name": "CHEM 3397", + "title": "Physical Chemistry Laboratory I" + }, + { + "name": "CHEM 3398", + "title": "Physical Chemistry Laboratory II" + }, + { + "name": "CHEM 3401", + "title": "Applications of Biochemistry" + }, + { + "name": "CHEM 3405", + "title": "Physical Chemistry of Biomolecules" + }, + { + "name": "CHEM 3881", + "title": "Cooperative Research" + }, + { + "name": "CHEM 3891", + "title": "Undergraduate Research" + }, + { + "name": "CHEM 4002", + "title": "Advanced Inorganic Chemistry" + }, + { + "name": "CHEM 4003", + "title": "Inorganic Synthesis" + }, + { + "name": "CHEM 4004", + "title": "Crystallography and Diffraction" + }, + { + "name": "CHEM 4103", + "title": "Instrumental Design" + }, + { + "name": "CHEM 4107", + "title": "Drug Analysis" + }, + { + "name": "CHEM 4108", + "title": "Investigative Chemistry" + }, + { + "name": "CHEM 4196", + "title": "Techniques of Chemical Measurement II" + }, + { + "name": "CHEM 4201", + "title": "Organic Structure and Mechanisms" + }, + { + "name": "CHEM 4202", + "title": "Organic Synthesis Methodology" + }, + { + "name": "CHEM 4207", + "title": "Advanced Organic Preparations" + }, + { + "name": "CHEM 4396", + "title": "Physical Chemistry Laboratory" + }, + { + "name": "CHEM 4401", + "title": "Biochemistry I" + }, + { + "name": "CHEM 4503", + "title": "Introduction to Polymer Chemistry" + }, + { + "name": "CHEM 4881", + "title": "Cooperative Research" + }, + { + "name": "CHEM 4891", + "title": "Undergraduate Research" + }, + { + "name": "CHEM 5001", + "title": "Advanced Inorganic Chemistry I" + }, + { + "name": "CHEM 5005", + "title": "Organometallic Chemistry" + }, + { + "name": "CHEM 5102", + "title": "Data Analysis and Evidence" + }, + { + "name": "CHEM 5103", + "title": "Advanced Instrumental Methods" + }, + { + "name": "CHEM 5107", + "title": "Drug Analysis" + }, + { + "name": "CHEM 5108", + "title": "Investigative Chemistry" + }, + { + "name": "CHEM 5201", + "title": "Physical Methods in Organic Chemistry" + }, + { + "name": "CHEM 5202", + "title": "Organic Reaction Mechanisms" + }, + { + "name": "CHEM 5205", + "title": "Organic Syntheses" + }, + { + "name": "CHEM 5301", + "title": "Quantum Chemistry" + }, + { + "name": "CHEM 5302", + "title": "Statistical Thermodynamics" + }, + { + "name": "CHEM 5304", + "title": "Nanomaterials Chemistry and Physics" + }, + { + "name": "CHEM 5305", + "title": "Chemical Kinetics" + }, + { + "name": "CHEM 5358", + "title": "Cellular/Molecular Neuroscience" + }, + { + "name": "CHEM 5401", + "title": "Biochemistry I" + }, + { + "name": "CHEM 5402", + "title": "Chemical Biology" + }, + { + "name": "CHEM 5412", + "title": "Structural Bioinformatics II" + }, + { + "name": "CHEM 5505", + "title": "Advanced Polymer Structure and Properties" + }, + { + "name": "CHEM 5701", + "title": "Teaching of Chemistry" + }, + { + "name": "CHEM 5901", + "title": "Responsibility and Ethics in Chemical Research" + }, + { + "name": "CHEM 8000", + "title": "Special Topics in Inorganic Chemistry" + }, + { + "name": "CHEM 8001", + "title": "Leadership, Law and Ethics in Forensic Science" + }, + { + "name": "CHEM 8107", + "title": "Advanced Forensic Chemistry" + }, + { + "name": "CHEM 8200", + "title": "Special Topics in Organic Chemistry" + }, + { + "name": "CHEM 8201", + "title": "The Chemistry of Natural Products" + }, + { + "name": "CHEM 8205", + "title": "Heterocyclic Chemistry" + }, + { + "name": "CHEM 8210", + "title": "Special Topics in Organic Chemistry" + }, + { + "name": "CHEM 8300", + "title": "Special Topics in Physical Chemistry" + }, + { + "name": "CHEM 8301", + "title": "Molecular Spectroscopy" + }, + { + "name": "CHEM 8302", + "title": "Computational Chemistry" + }, + { + "name": "CHEM 8303", + "title": "Modern Meth in Exp Chem" + }, + { + "name": "CHEM 8310", + "title": "Special Topics in Analytical Chemistry" + }, + { + "name": "CHEM 8400", + "title": "Special Topics in Biochemistry" + }, + { + "name": "CHEM 8401", + "title": "Bioinorganic Chemistry" + }, + { + "name": "CHEM 8501", + "title": "High Polymer Chemistry" + }, + { + "name": "CHEM 8601", + "title": "Analytical Separations" + }, + { + "name": "CHEM 8985", + "title": "Teaching in Higher Ed:Phys Sci" + }, + { + "name": "CHEM 9300", + "title": "Seminar in Physical Chemistry" + }, + { + "name": "CHEM 9800", + "title": "Seminar in Forensic Chemistry" + }, + { + "name": "CHEM 9900", + "title": "Seminar" + }, + { + "name": "CHEM 9901", + "title": "Original Research Proposal Preparation" + }, + { + "name": "CHEM 9991", + "title": "Master's Research Projects" + }, + { + "name": "CHEM 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "CHEM 9995", + "title": "Capstone Project" + }, + { + "name": "CHEM 9996", + "title": "Master's Thesis Research" + }, + { + "name": "CHEM 9998", + "title": "Pre-Dissertation Research / Elevation to Candidacy" + }, + { + "name": "CHEM 9999", + "title": "Dissertation Research" + }, + { + "name": "CHEM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CHEM F000", + "title": "* See Statement Below" + }, + { + "name": "CHEM L000", + "title": "Elective LL" + }, + { + "name": "CHEM L001", + "title": "Elective" + }, + { + "name": "CHEM P000", + "title": "Elective P" + }, + { + "name": "CHEM U000", + "title": "Elective UL" + }, + { + "name": "CHEM U001", + "title": "Elective UL" + }, + { + "name": "CHI 0815", + "title": "Language in Society" + }, + { + "name": "CHI 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "CHI 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "CHI 1001", + "title": "Chinese Elements I" + }, + { + "name": "CHI 1002", + "title": "Chinese Elements II" + }, + { + "name": "CHI 2001", + "title": "Chinese Intermediate I" + }, + { + "name": "CHI 2002", + "title": "Chinese Intermediate II" + }, + { + "name": "CHI 2011", + "title": "Pre-Modern Chinese Literature" + }, + { + "name": "CHI 2013", + "title": "Modern and Contemporary Chinese Literature in Translation" + }, + { + "name": "CHI 2015", + "title": "The Chinese Language" + }, + { + "name": "CHI 2022", + "title": "Contemporary Chinese Urban Film and Fiction in Translation" + }, + { + "name": "CHI 2112", + "title": "Chinese Literature: From Classical to Contemporary" + }, + { + "name": "CHI 3000", + "title": "Chinese Special Topics I" + }, + { + "name": "CHI 3001", + "title": "Chinese Advanced I" + }, + { + "name": "CHI 3002", + "title": "Chinese Advanced II" + }, + { + "name": "CHI 3010", + "title": "Chinese Special Topics II" + }, + { + "name": "CHI 3021", + "title": "Modern China in Fiction and Film" + }, + { + "name": "CHI 3031", + "title": "Women in Chinese Literature" + }, + { + "name": "CHI 3900", + "title": "Honors Special Topics" + }, + { + "name": "CHI 4001", + "title": "Chinese Culture and Civilization" + }, + { + "name": "CHI 4182", + "title": "Chinese Independent Study I" + }, + { + "name": "CHI 4282", + "title": "Chinese Independent Study II" + }, + { + "name": "CHI 4296", + "title": "Chinese Composition" + }, + { + "name": "CHI 4297", + "title": "Chinese Capstone Seminar" + }, + { + "name": "CHI E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CTRP 0807", + "title": "People, Places, and Environment" + }, + { + "name": "CTRP 0821", + "title": "Digital Mapping: From Mercator to Mashups" + }, + { + "name": "CTRP 1001", + "title": "Freshman Seminar/Discovery Series" + }, + { + "name": "CTRP 1017", + "title": "City Planning Principles and Practice" + }, + { + "name": "CTRP 2114", + "title": "Urban Form and Design" + }, + { + "name": "CTRP 2166", + "title": "Land Use Planning" + }, + { + "name": "CTRP 2213", + "title": "Environmental Planning" + }, + { + "name": "CTRP 2251", + "title": "Sustainable Food Systems Planning" + }, + { + "name": "CTRP 2524", + "title": "Fundamentals of Geographic Information Systems (GIS)" + }, + { + "name": "CTRP 3155", + "title": "Ecological Planning and Development " + }, + { + "name": "CTRP 3255", + "title": "Sustainability in Suburban Communities" + }, + { + "name": "CTRP 3256", + "title": "Sustainable Community Design and Development" + }, + { + "name": "CTRP 3555", + "title": "Internet and Digital Technologies for Community Engagement " + }, + { + "name": "CTRP 3655", + "title": "Transportation Planning" + }, + { + "name": "CTRP 3755", + "title": "Introduction to Emergency Management Planning" + }, + { + "name": "CTRP 3860", + "title": "Topics in Community & Regional Planning" + }, + { + "name": "CTRP 3870", + "title": "Special Topics" + }, + { + "name": "CTRP 3882", + "title": "Independent Study" + }, + { + "name": "CTRP 3883", + "title": "Directed Reading/Study" + }, + { + "name": "CTRP 3889", + "title": "Planning Studio" + }, + { + "name": "CTRP 4885", + "title": "Internship and Professional Practice in Planning" + }, + { + "name": "CTRP 4896", + "title": "Community and Regional Planning Senior Capstone Seminar" + }, + { + "name": "CTRP 5013", + "title": "Planning History and Theory" + }, + { + "name": "CTRP 5014", + "title": "Planning Politics and Administration" + }, + { + "name": "CTRP 5113", + "title": "Nonprofit Management" + }, + { + "name": "CTRP 5157", + "title": "Community-based Organizations in Planning" + }, + { + "name": "CTRP 5251", + "title": "Sustainable Food Systems Planning" + }, + { + "name": "CTRP 5256", + "title": "Sustainable Community Design and Development" + }, + { + "name": "CTRP 5313", + "title": "Community Development Finance" + }, + { + "name": "CTRP 5413", + "title": "Planning Communications" + }, + { + "name": "CTRP 5455", + "title": "Community Engagement and Empowerment" + }, + { + "name": "CTRP 5513", + "title": "Planning Analysis" + }, + { + "name": "CTRP 5524", + "title": "Spatial Analysis Techniques/Geographic Information Systems" + }, + { + "name": "CTRP 5525", + "title": "Advanced Techniques in Geographic Information Systems (GIS)" + }, + { + "name": "CTRP 8013", + "title": "Planning History and Theory" + }, + { + "name": "CTRP 8016", + "title": "Planning Law" + }, + { + "name": "CTRP 8056", + "title": "Public Budgeting and Finance" + }, + { + "name": "CTRP 8114", + "title": "Urban Form and Design" + }, + { + "name": "CTRP 8155", + "title": "Ecological Planning and Development" + }, + { + "name": "CTRP 8156", + "title": "Neighborhoods, Cities, and Regions" + }, + { + "name": "CTRP 8165", + "title": "Placemaking: Revitalizing Urban Communities" + }, + { + "name": "CTRP 8166", + "title": "Land-Use Planning" + }, + { + "name": "CTRP 8175", + "title": "Gentrification and Equitable Development" + }, + { + "name": "CTRP 8213", + "title": "Environmental Planning" + }, + { + "name": "CTRP 8255", + "title": "Sustainability in Suburban Communities" + }, + { + "name": "CTRP 8257", + "title": "Environmental Policy" + }, + { + "name": "CTRP 8266", + "title": "Sustainable Business Practices" + }, + { + "name": "CTRP 8267", + "title": "Water Resources Planning and Management" + }, + { + "name": "CTRP 8276", + "title": "Regional Development" + }, + { + "name": "CTRP 8355", + "title": "Environmental Infrastructure Planning and Management" + }, + { + "name": "CTRP 8455", + "title": "Planning Processes and Project Management" + }, + { + "name": "CTRP 8476", + "title": "Collaborative Planning" + }, + { + "name": "CTRP 8555", + "title": "Internet and Digital Technologies for Community Engagement" + }, + { + "name": "CTRP 8655", + "title": "Transportation Planning" + }, + { + "name": "CTRP 8656", + "title": "Integrated Transportation and Land-Use Planning: Context-Sensitive Design Solutions" + }, + { + "name": "CTRP 8657", + "title": "Non-motorized Transportation Planning" + }, + { + "name": "CTRP 8666", + "title": "Travel Demand Modeling" + }, + { + "name": "CTRP 8755", + "title": "Introduction to Emergency Management Planning" + }, + { + "name": "CTRP 8756", + "title": "After the Disaster: Effective Planning for Continuity, Recovery and Restoration" + }, + { + "name": "CTRP 8840", + "title": "Topics in Community and Regional Planning" + }, + { + "name": "CTRP 8850", + "title": "Topics in Community and Regional Planning" + }, + { + "name": "CTRP 8860", + "title": "Topics in Community and Regional Planning" + }, + { + "name": "CTRP 8870", + "title": "Special Topics" + }, + { + "name": "CTRP 8889", + "title": "Planning Studio I" + }, + { + "name": "CTRP 9883", + "title": "Directed Reading/Study" + }, + { + "name": "CTRP 9885", + "title": "Internship in Planning" + }, + { + "name": "CTRP 9889", + "title": "Planning Studio" + }, + { + "name": "CTRP 9995", + "title": "Thesis in Planning" + }, + { + "name": "CTRP E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CTRP L000", + "title": "Elective LL" + }, + { + "name": "CTRP T000", + "title": "Elective" + }, + { + "name": "CTRP U000", + "title": "Elective UL" + }, + { + "name": "CEE 0845", + "title": "The Environment" + }, + { + "name": "CEE 0945", + "title": "Honors: The Environment" + }, + { + "name": "CEE 1001", + "title": "Introduction to Civil Engineering" + }, + { + "name": "CEE 1051", + "title": "Introduction to the Environment" + }, + { + "name": "CEE 1105", + "title": "Surveying" + }, + { + "name": "CEE 1115", + "title": "Surveying Laboratory" + }, + { + "name": "CEE 2011", + "title": "Civil Engineering Materials" + }, + { + "name": "CEE 2341", + "title": "Construction Materials Laboratory" + }, + { + "name": "CEE 2711", + "title": "Environmental Chemistry & Microbiology" + }, + { + "name": "CEE 2712", + "title": "Introduction to Environmental Engineering" + }, + { + "name": "CEE 2715", + "title": "Principles of Sustainable Engineering" + }, + { + "name": "CEE 2811", + "title": "Sustainable Projects in the Developing World I" + }, + { + "name": "CEE 2812", + "title": "Sustainable Projects in the Developing World II" + }, + { + "name": "CEE 3048", + "title": "Probability, Statistics & Stochastic Methods" + }, + { + "name": "CEE 3211", + "title": "Transportation Engineering" + }, + { + "name": "CEE 3311", + "title": "Construction Engineering" + }, + { + "name": "CEE 3331", + "title": "Soil Mechanics" + }, + { + "name": "CEE 3332", + "title": "Soil Mechanics Laboratory" + }, + { + "name": "CEE 3334", + "title": "Structural Design of Pavements" + }, + { + "name": "CEE 3411", + "title": "Structural Analysis" + }, + { + "name": "CEE 3412", + "title": "Structural Analysis Laboratory" + }, + { + "name": "CEE 3421", + "title": "Steel Design" + }, + { + "name": "CEE 3431", + "title": "Concrete Design" + }, + { + "name": "CEE 3441", + "title": "Steel & Concrete Design" + }, + { + "name": "CEE 3611", + "title": "Hydraulic Engineering" + }, + { + "name": "CEE 3711", + "title": "Environmental Engineering" + }, + { + "name": "CEE 3712", + "title": "Environmental Fluids and Contaminant Dynamics" + }, + { + "name": "CEE 3715", + "title": "Microbiological Principles of Environmental Engineering" + }, + { + "name": "CEE 3717", + "title": "Chemical Principles of Environmental Engineering" + }, + { + "name": "CEE 3725", + "title": "Water Quality and Analysis Lab" + }, + { + "name": "CEE 3727", + "title": "Environmental Hydrology and Stormwater Management" + }, + { + "name": "CEE 4040", + "title": "Special Topics" + }, + { + "name": "CEE 4072", + "title": "Update and Assessment" + }, + { + "name": "CEE 4201", + "title": "Transportation Systems Management" + }, + { + "name": "CEE 4211", + "title": "Bridge Engineering" + }, + { + "name": "CEE 4221", + "title": "Intelligent Transportation Systems" + }, + { + "name": "CEE 4231", + "title": "Airport Engineering" + }, + { + "name": "CEE 4244", + "title": "Introduction to Geosynthetics" + }, + { + "name": "CEE 4301", + "title": "Construction Administration" + }, + { + "name": "CEE 4302", + "title": "Engineering Project Management" + }, + { + "name": "CEE 4303", + "title": "Construction Financial Management" + }, + { + "name": "CEE 4312", + "title": "Construction Equipment Management" + }, + { + "name": "CEE 4321", + "title": "Geotechnical Engineering" + }, + { + "name": "CEE 4421", + "title": "Structural Dynamics" + }, + { + "name": "CEE 4431", + "title": "Behavior and Design of Steel Structures" + }, + { + "name": "CEE 4432", + "title": "Behavior and Design of Reinforced Concrete Structures" + }, + { + "name": "CEE 4433", + "title": "Behavior and Design of Masonry Structures" + }, + { + "name": "CEE 4443", + "title": "Finite Element Analysis" + }, + { + "name": "CEE 4445", + "title": "Earthquake Engineering and Seismic Design" + }, + { + "name": "CEE 4531", + "title": "Life Cycle Assessment and Carbon Footprinting" + }, + { + "name": "CEE 4622", + "title": "Fate Pollutants in Subsurface Environments" + }, + { + "name": "CEE 4623", + "title": "Contaminant Dynamics in Urban Streams" + }, + { + "name": "CEE 4631", + "title": "Environmental Hydrology" + }, + { + "name": "CEE 4641", + "title": "Urban Streams and Stormwater Management" + }, + { + "name": "CEE 4711", + "title": "Air Pollution Control System" + }, + { + "name": "CEE 4721", + "title": "Water and Wastewater Systems Design" + }, + { + "name": "CEE 4722", + "title": "Water/Wastewater Lab" + }, + { + "name": "CEE 4725", + "title": "Environmental Systems Design" + }, + { + "name": "CEE 4731", + "title": "Solid & Hazardous Waste Management" + }, + { + "name": "CEE 4741", + "title": "Professional Issues I" + }, + { + "name": "CEE 4742", + "title": "Professional Issues II" + }, + { + "name": "CEE 4761", + "title": "Environmental Chemistry" + }, + { + "name": "CEE 4762", + "title": "Environmental Organic Chemistry" + }, + { + "name": "CEE 4773", + "title": "Sustainability Aspects of Water Supply and Wastewater Treatment" + }, + { + "name": "CEE 4811", + "title": "Advanced Soil Mechanics" + }, + { + "name": "CEE 4821", + "title": "Foundation Engineering" + }, + { + "name": "CEE 4822", + "title": "Earth Retaining Systems" + }, + { + "name": "CEE 4823", + "title": "Geotechnical Earthquake Engineering" + }, + { + "name": "CEE 4871", + "title": "Fundamentals of Engineering in Civil Engineering" + }, + { + "name": "CEE 4882", + "title": "Independent Study in Civil Engineering" + }, + { + "name": "CEE 4883", + "title": "Directed Study in Civil Engineering" + }, + { + "name": "CEE 4891", + "title": "Independent Research in Civil Engineering" + }, + { + "name": "CEE 5048", + "title": "Probability and Statistics in Engineering" + }, + { + "name": "CEE 5058", + "title": "Probability Statistics in Engineering" + }, + { + "name": "CEE 5110", + "title": "Special Topics" + }, + { + "name": "CEE 5201", + "title": "Transportation Systems Management" + }, + { + "name": "CEE 5202", + "title": "Transportation Engineering" + }, + { + "name": "CEE 5203", + "title": "Structural Design of Pavements" + }, + { + "name": "CEE 5211", + "title": "Bridge Design" + }, + { + "name": "CEE 5212", + "title": "Transportation Engineering Materials" + }, + { + "name": "CEE 5221", + "title": "Intelligent Transportation Systems" + }, + { + "name": "CEE 5231", + "title": "Airport Engineering" + }, + { + "name": "CEE 5241", + "title": "Pavement Management and Traffic Systems Management" + }, + { + "name": "CEE 5244", + "title": "Introduction to Geosynthetics" + }, + { + "name": "CEE 5251", + "title": "Pavement Rehabilitation and Maintenance" + }, + { + "name": "CEE 5301", + "title": "Construction Administration" + }, + { + "name": "CEE 5302", + "title": "Engineering Project Management" + }, + { + "name": "CEE 5303", + "title": "Construction Financial Management" + }, + { + "name": "CEE 5312", + "title": "Construction Equipment Management" + }, + { + "name": "CEE 5321", + "title": "Geotechnical Engineering" + }, + { + "name": "CEE 5411", + "title": "Structural CADD Systems" + }, + { + "name": "CEE 5421", + "title": "Structural Dynamics" + }, + { + "name": "CEE 5431", + "title": "Behavior and Design of Steel Structures" + }, + { + "name": "CEE 5432", + "title": "Structural Mechanics" + }, + { + "name": "CEE 5433", + "title": "Behavior and Design of Masonry Structures" + }, + { + "name": "CEE 5434", + "title": "Behavior and Design of Reinforced Concrete Structures" + }, + { + "name": "CEE 5445", + "title": "Earthquake Engineering and Seismic Design" + }, + { + "name": "CEE 5531", + "title": "Life Cycle Assessment and Carbon Footprinting" + }, + { + "name": "CEE 5621", + "title": "Engineering Hydrology" + }, + { + "name": "CEE 5622", + "title": "Fate of Pollutants in Subsurface Environments" + }, + { + "name": "CEE 5623", + "title": "Contaminant Dynamics in Urban Streams" + }, + { + "name": "CEE 5631", + "title": "Environmental Hydrology" + }, + { + "name": "CEE 5641", + "title": "Urban Streams and Stormwater Management" + }, + { + "name": "CEE 5701", + "title": "Physical Principals of Environmental Systems" + }, + { + "name": "CEE 5702", + "title": "Chemical Principles of Environmental Systems" + }, + { + "name": "CEE 5703", + "title": "Mathematical Modeling" + }, + { + "name": "CEE 5711", + "title": "Air Pollution Control" + }, + { + "name": "CEE 5721", + "title": "Weather Monitoring and Forecasting" + }, + { + "name": "CEE 5731", + "title": "Solid Wastes Engineering" + }, + { + "name": "CEE 5761", + "title": "Environmental Chemistry" + }, + { + "name": "CEE 5762", + "title": "Environmental Organic Chemistry" + }, + { + "name": "CEE 5771", + "title": "Chemistry for Environmentally Sustainable Engineering" + }, + { + "name": "CEE 5772", + "title": "Sustainable Development and Industrial Ecology" + }, + { + "name": "CEE 5773", + "title": "Sustainability Aspects of Water Supply and Wastewater Treatment" + }, + { + "name": "CEE 5774", + "title": "Membrane Separation in Wastewater Treatment" + }, + { + "name": "CEE 5792", + "title": "Biological Principles of Environmental Systems" + }, + { + "name": "CEE 5793", + "title": "Environmental Biotechnology" + }, + { + "name": "CEE 5794", + "title": "Advanced Biological Wastewater Treatment" + }, + { + "name": "CEE 5795", + "title": "Aquatic Toxicology in Environmental Engineering" + }, + { + "name": "CEE 5799", + "title": "Environmental Engineering" + }, + { + "name": "CEE 5811", + "title": "Advanced Soil Mechanics" + }, + { + "name": "CEE 5821", + "title": "Foundation Engineering" + }, + { + "name": "CEE 5822", + "title": "Earth Retaining Systems" + }, + { + "name": "CEE 5823", + "title": "Geotechnical Earthquake Engineering" + }, + { + "name": "CEE 8302", + "title": "Advanced Project Management" + }, + { + "name": "CEE 8701", + "title": "Advanced Physical/Chemical Treatment Processes" + }, + { + "name": "CEE 8702", + "title": "Advanced Chemical Principles of Environmental Systems" + }, + { + "name": "CEE 8703", + "title": "Computer Modeling of Environmental Transport" + }, + { + "name": "CEE 8751", + "title": "Water and Wastewater Systems Design" + }, + { + "name": "CEE 9182", + "title": "Independent Study I" + }, + { + "name": "CEE 9282", + "title": "Independent Study II" + }, + { + "name": "CEE 9991", + "title": "Directed Research" + }, + { + "name": "CEE 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "CEE 9995", + "title": "Project" + }, + { + "name": "CEE 9996", + "title": "Thesis" + }, + { + "name": "CEE 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "CEE 9999", + "title": "Dissertation Research" + }, + { + "name": "CEE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CEE T000", + "title": "Elective" + }, + { + "name": "CSHI 5201", + "title": "Clinical Data and Analytics" + }, + { + "name": "CSHI 5202", + "title": "Applications of Data Science to Clinical Medicine and Medical Research" + }, + { + "name": "CLA 1001", + "title": "The CLA First Year Experience" + }, + { + "name": "CLA 1002", + "title": "Professional Development for Liberal Arts Majors" + }, + { + "name": "CLA 1009", + "title": "Discovering the Liberal Arts" + }, + { + "name": "CLA 1010", + "title": "Special Topics in Liberal Arts" + }, + { + "name": "CLA 1019", + "title": "Discovering the American Legal System" + }, + { + "name": "CLA 1234", + "title": "Life Experience Portfolio" + }, + { + "name": "CLA 1701", + "title": "The Washington Center Leadership Forum" + }, + { + "name": "CLA 1801", + "title": "Career Seminar in the Liberal Arts" + }, + { + "name": "CLA 1919", + "title": "Honors Discovering the American Legal System" + }, + { + "name": "CLA 2010", + "title": "Special Topics in Liberal Arts I" + }, + { + "name": "CLA 2020", + "title": "Special Topics in Liberal Arts II" + }, + { + "name": "CLA 2030", + "title": "Special Topics in Liberal Arts III" + }, + { + "name": "CLA 2096", + "title": "Approaches to Liberal Studies" + }, + { + "name": "CLA 2685", + "title": "Internship" + }, + { + "name": "CLA 2701", + "title": "The Washington Center Seminar" + }, + { + "name": "CLA 2785", + "title": "The Washington Center Internship" + }, + { + "name": "CLA 3075", + "title": "Corporate Interdisciplinary Seminar" + }, + { + "name": "CLA 3085", + "title": "Corporate Interdisciplinary Internship" + }, + { + "name": "CLA 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "CLA 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "CLA 3900", + "title": "Honors Interdisciplinary Special Topics I" + }, + { + "name": "CLA 4900", + "title": "Honors Interdisciplinary Special Topics II" + }, + { + "name": "CLA 4901", + "title": "Honors Interdisciplinary Research Methods" + }, + { + "name": "CLA 4902", + "title": "Honors Interdisciplinary Thesis" + }, + { + "name": "CLA 4910", + "title": "Honors Humanities Special Topics" + }, + { + "name": "CLA 4911", + "title": "Honors Humanities Research Methods" + }, + { + "name": "CLA 4912", + "title": "Honors Humanities Thesis" + }, + { + "name": "CLA 4920", + "title": "Honors Social Science Special Topics" + }, + { + "name": "CLA 4921", + "title": "Honors Social Science Research Methods" + }, + { + "name": "CLA 4922", + "title": "Honors Social Science Thesis" + }, + { + "name": "CLA 5001", + "title": "Language Study for Graduate Students" + }, + { + "name": "CLA 5019", + "title": "Introduction to Cultural Analytics" + }, + { + "name": "CLA 5999", + "title": "Research Experience" + }, + { + "name": "CLA 8985", + "title": "Teaching in Higher Education: Liberal Arts" + }, + { + "name": "CLA E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CLA L000", + "title": "Elective LL" + }, + { + "name": "CLA P000", + "title": "Elective P" + }, + { + "name": "CLA T000", + "title": "Elective" + }, + { + "name": "CLA U000", + "title": "Elective UL" + }, + { + "name": "SCTC 0712", + "title": "Mathematical Concepts I" + }, + { + "name": "SCTC 0721", + "title": "Mathematical Concepts II" + }, + { + "name": "SCTC 0727", + "title": "Chemical Concepts" + }, + { + "name": "SCTC 1001", + "title": "CST First Year Seminar" + }, + { + "name": "SCTC 1002", + "title": "STEM Scholars Seminar" + }, + { + "name": "SCTC 1021", + "title": "Journey of the Algorithm" + }, + { + "name": "SCTC 1189", + "title": "Step 1: Inquiry Approaches to Teaching" + }, + { + "name": "SCTC 1289", + "title": "Step 2: Inquiry Based Lesson Design with Strategies for English Learners" + }, + { + "name": "SCTC 1301", + "title": "Problem Solving in Science" + }, + { + "name": "SCTC 1385", + "title": "Community Engagement: Science and Mathematics Tutoring Mentoring and Service" + }, + { + "name": "SCTC 1389", + "title": "Step 1 and 2: Inquiry-Based Lesson Design in Science and Mathematics Modified for English Learners" + }, + { + "name": "SCTC 1501", + "title": "STEM Challenge: The World Around Us" + }, + { + "name": "SCTC 1502", + "title": "STEM Challenge: The World Within" + }, + { + "name": "SCTC 2001", + "title": "CST Transfer Seminar" + }, + { + "name": "SCTC 2082", + "title": "Sophomore Directed Study" + }, + { + "name": "SCTC 2100", + "title": "Special Topics in Science and Technology" + }, + { + "name": "SCTC 2101", + "title": "Medical Imaging Physics - Seeing Through Ourselves" + }, + { + "name": "SCTC 2102", + "title": "SERC: Science of Energy Resource Consumption" + }, + { + "name": "SCTC 2385", + "title": "Internship in Informal Science Education" + }, + { + "name": "SCTC 2389", + "title": "Step 3: STEM Classroom Teaching" + }, + { + "name": "SCTC 2396", + "title": "Writing for Science and Technology" + }, + { + "name": "SCTC 3001", + "title": "History of Science" + }, + { + "name": "SCTC 3185", + "title": "Laboratory Experiences in STEM for Pre-Service and In-Service Teachers" + }, + { + "name": "SCTC 3201", + "title": "Research On and Assessment of STEM Teaching Practices" + }, + { + "name": "SCTC 3312", + "title": "Coding STEM Lessons" + }, + { + "name": "SCTC 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "SCTC 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "SCTC 3485", + "title": "Science and Mathematics in the Classroom" + }, + { + "name": "SCTC 4001", + "title": "Responsible Conduct of Research" + }, + { + "name": "SCTC 4321", + "title": "Entrepreneurship in Science and Technology" + }, + { + "name": "SCTC 4385", + "title": "STEM Teaching and Assessment in Practice" + }, + { + "name": "SCTC 4396", + "title": "Paradigms of Scientific Knowledge: Knowledge Discovery from Scientific Data" + }, + { + "name": "SCTC 4401", + "title": "Cyber STEM Lessons" + }, + { + "name": "SCTC 4485", + "title": "Integrating STEM Practice in Diverse Teaching Environments" + }, + { + "name": "SCTC 5100", + "title": "Special Topics" + }, + { + "name": "SCTC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CMGT 5001", + "title": "Communicating Organizational Leadership" + }, + { + "name": "CMGT 5002", + "title": "Leadership in Crises and Conflict Management" + }, + { + "name": "CMGT 5003", + "title": "Leading Diverse Teams" + }, + { + "name": "CMGT 5004", + "title": "Cross-Cultural Leadership" + }, + { + "name": "CMGT 5101", + "title": "Conflict Management Processes in the Workplace" + }, + { + "name": "CMGT 5102", + "title": "Designing Workplace Dispute Systems" + }, + { + "name": "CMGT 8101", + "title": "Communication Management Research Methods" + }, + { + "name": "CMGT 8103", + "title": "Organizational Communication" + }, + { + "name": "CMGT 8105", + "title": "Social Responsibility in Corporations and Not-for-Profit Organizations" + }, + { + "name": "CMGT 8106", + "title": "Communication Theory for Professionals" + }, + { + "name": "CMGT 8109", + "title": "Final Project" + }, + { + "name": "CSCD 0815", + "title": "Language in Society" + }, + { + "name": "CSCD 1001", + "title": "American Sign Language I" + }, + { + "name": "CSCD 1002", + "title": "American Sign Language II" + }, + { + "name": "CSCD 1003", + "title": "American Sign Language III" + }, + { + "name": "CSCD 1004", + "title": "American Sign Language IV" + }, + { + "name": "CSCD 1108", + "title": "Introduction to Linguistics" + }, + { + "name": "CSCD 1901", + "title": "Honors American Sign Language 1" + }, + { + "name": "CSCD 1902", + "title": "Honors American Sign Language 2" + }, + { + "name": "CSCD 2011", + "title": "American Deaf Culture" + }, + { + "name": "CSCD 2049", + "title": "Language and the Brain" + }, + { + "name": "CSCD 2111", + "title": "Language and Race" + }, + { + "name": "CSCD 2197", + "title": "Communication Deviations and Disorders" + }, + { + "name": "CSCD 2201", + "title": "Research Methods in Communication Sciences" + }, + { + "name": "CSCD 2202", + "title": "Sociolinguistics" + }, + { + "name": "CSCD 2209", + "title": "Phonetics and Phonology" + }, + { + "name": "CSCD 2219", + "title": "Psycholinguistics" + }, + { + "name": "CSCD 3231", + "title": "Principles of Syntax" + }, + { + "name": "CSCD 3232", + "title": "Introduction to Aphasia and Evidence-Based Communicative Interventions" + }, + { + "name": "CSCD 3233", + "title": "Basic Speech Science" + }, + { + "name": "CSCD 3234", + "title": "Basic Hearing Science" + }, + { + "name": "CSCD 3235", + "title": "Human Neuroscience" + }, + { + "name": "CSCD 3236", + "title": "Cultural and Linguistic Diversity: Focus on Autism" + }, + { + "name": "CSCD 3297", + "title": "Syntax" + }, + { + "name": "CSCD 3301", + "title": "Speech and Language Development" + }, + { + "name": "CSCD 3302", + "title": "Readings and Research in Multilingualism" + }, + { + "name": "CSCD 3304", + "title": "Clinical Phonetics" + }, + { + "name": "CSCD 3305", + "title": "Teaching and Learning: The Preceptor Experience" + }, + { + "name": "CSCD 3382", + "title": "Independent Study in Communication Sciences" + }, + { + "name": "CSCD 3730", + "title": "Topics in Linguistics" + }, + { + "name": "CSCD 3900", + "title": "Honors Special Topics in Communication Sciences and Disorders" + }, + { + "name": "CSCD 4301", + "title": "Principles of Audiology" + }, + { + "name": "CSCD 4396", + "title": "Orientation to Clinical Management" + }, + { + "name": "CSCD 4397", + "title": "Fieldwork in Linguistics" + }, + { + "name": "CSCD 4730", + "title": "Topics in Communication Sciences and Disorders" + }, + { + "name": "CSCD 4979", + "title": "Honors in Communication Sciences" + }, + { + "name": "CSCD 5411", + "title": "Psycholinguistics" + }, + { + "name": "CSCD 5501", + "title": "Modern Linguistics I - Syntax" + }, + { + "name": "CSCD 5502", + "title": "Phonology I" + }, + { + "name": "CSCD 5505", + "title": "Issues in Linguistics" + }, + { + "name": "CSCD 5511", + "title": "Bilingualism: A Lifespan Perspective" + }, + { + "name": "CSCD 5521", + "title": "Foundations in Child Language Disorders" + }, + { + "name": "CSCD 5522", + "title": "Foundations and Management in Phonological Disorders" + }, + { + "name": "CSCD 5524", + "title": "Foundations and Management of Motor Speech Disorders" + }, + { + "name": "CSCD 5525", + "title": "Foundations and Management in Fluency" + }, + { + "name": "CSCD 5527", + "title": "Foundations and Rehabilitation of Language and Cognitive Disorders in Aphasia" + }, + { + "name": "CSCD 5528", + "title": "Voice Disorders: Theory and Analysis" + }, + { + "name": "CSCD 5529", + "title": "Case Studies" + }, + { + "name": "CSCD 5531", + "title": "Applications in Audiology" + }, + { + "name": "CSCD 5532", + "title": "Foundations and Management in Hearing Disorders" + }, + { + "name": "CSCD 5533", + "title": "Principles of Audiology" + }, + { + "name": "CSCD 5534", + "title": "American Sign Language I" + }, + { + "name": "CSCD 5634", + "title": "American Sign Language II" + }, + { + "name": "CSCD 5729", + "title": "Language and Deafness" + }, + { + "name": "CSCD 5730", + "title": "Topics in Speech, Language and Hearing" + }, + { + "name": "CSCD 8147", + "title": "Basic Practicum in Audiology" + }, + { + "name": "CSCD 8187", + "title": "Basic Practicum in Diagnostic Processes " + }, + { + "name": "CSCD 8287", + "title": "Basic Practicum in Therapy Processes" + }, + { + "name": "CSCD 8601", + "title": "Advanced Syntax" + }, + { + "name": "CSCD 8721", + "title": "Foundations and Management in Augmentative and Alternative Communication" + }, + { + "name": "CSCD 8722", + "title": "Foundations and Management in Dysphagia" + }, + { + "name": "CSCD 8723", + "title": "Seminar in Speech Language Hearing" + }, + { + "name": "CSCD 8725", + "title": "Disorders of Articulation and Phonology: Special Populations" + }, + { + "name": "CSCD 8726", + "title": "Management of Child Language Disorders" + }, + { + "name": "CSCD 8727", + "title": "Written Language Development and Disorders" + }, + { + "name": "CSCD 8728", + "title": "Voice Disorders: Spec Pop" + }, + { + "name": "CSCD 8729", + "title": "Neurocognitive Language Disorders" + }, + { + "name": "CSCD 8738", + "title": "Proj in Spch Lang Hear" + }, + { + "name": "CSCD 8824", + "title": "Assessment and Treatment of Diverse Populations" + }, + { + "name": "CSCD 8830", + "title": "Seminar In CSD" + }, + { + "name": "CSCD 9087", + "title": "Practicum in Hearing" + }, + { + "name": "CSCD 9187", + "title": "Advanced Practicum in Voice" + }, + { + "name": "CSCD 9287", + "title": "Advanced Practicum in Fluency" + }, + { + "name": "CSCD 9387", + "title": "Advanced Field Practicum in Speech Language Pathology - Child" + }, + { + "name": "CSCD 9388", + "title": "Capstone Field Practicum in Speech Language Pathology - Pediatric" + }, + { + "name": "CSCD 9487", + "title": "Advanced Field Practicum in Speech Language Pathology - Adult" + }, + { + "name": "CSCD 9488", + "title": "Capstone Field Practicum in Speech Language Pathology - Adult" + }, + { + "name": "CSCD 9582", + "title": "Independent Study - Communication Sciences" + }, + { + "name": "CSCD 9587", + "title": "Advanced Practicum in Aphasia" + }, + { + "name": "CSCD 9980", + "title": "Dissertation Seminar" + }, + { + "name": "CSCD 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "CSCD 9996", + "title": "Thesis Seminar" + }, + { + "name": "CSCD 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "CSCD 9999", + "title": "Dissertation Research" + }, + { + "name": "CSCD E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CSCD L000", + "title": "Elective LL" + }, + { + "name": "CSCD T000", + "title": "Elective" + }, + { + "name": "CSCD U000", + "title": "Elective UL" + }, + { + "name": "CSI 0801", + "title": "Contemporary American Social Movements" + }, + { + "name": "CSI 0836", + "title": "Interpersonal Communication: Critical Competencies for Professional and Personal Success" + }, + { + "name": "CSI 0901", + "title": "Honors Contemporary American Social Movements" + }, + { + "name": "CSI 1111", + "title": "Introduction to Public Speaking" + }, + { + "name": "CSI 1112", + "title": "Introduction to Communication and Social Influence" + }, + { + "name": "CSI 1113", + "title": "Persuasion" + }, + { + "name": "CSI 1201", + "title": "Communication and Civic Engagement" + }, + { + "name": "CSI 1401", + "title": "Conflict and Communication Behavior" + }, + { + "name": "CSI 1601", + "title": "Communication and Behavior Change" + }, + { + "name": "CSI 1911", + "title": "Honors Introduction to Public Speaking" + }, + { + "name": "CSI 2111", + "title": "Argumentation and Advocacy" + }, + { + "name": "CSI 2112", + "title": "Social Influence Inquiry" + }, + { + "name": "CSI 2201", + "title": "The Meaningful Enjoyment of Civic Life" + }, + { + "name": "CSI 2296", + "title": "Resistance, Protests, and Social Movements" + }, + { + "name": "CSI 2401", + "title": "Intercultural and Cross Cultural Conflict" + }, + { + "name": "CSI 2403", + "title": "Civil Disobedience" + }, + { + "name": "CSI 2602", + "title": "Rhetoric of Hate and Violence" + }, + { + "name": "CSI 2696", + "title": "Risk Communication" + }, + { + "name": "CSI 3085", + "title": "Study Away Internship" + }, + { + "name": "CSI 3100", + "title": "Special Topics in Communication and Social Influence" + }, + { + "name": "CSI 3182", + "title": "Independent Study" + }, + { + "name": "CSI 3185", + "title": "Internship" + }, + { + "name": "CSI 3186", + "title": "Study Away Internship" + }, + { + "name": "CSI 3187", + "title": "Practicum" + }, + { + "name": "CSI 3189", + "title": "Field Experience" + }, + { + "name": "CSI 3191", + "title": "Directed Research" + }, + { + "name": "CSI 3201", + "title": "Rhetoric and Civic Culture" + }, + { + "name": "CSI 3296", + "title": "Speechwriting" + }, + { + "name": "CSI 3401", + "title": "Urban Organizing" + }, + { + "name": "CSI 3402", + "title": "Conflict and Influence: Identity, Emotion and Power" + }, + { + "name": "CSI 3601", + "title": "Misperceptions and Misinformation" + }, + { + "name": "CSI 3602", + "title": "Rhetoric of Science" + }, + { + "name": "CSI 3701", + "title": "Intercultural Communication" + }, + { + "name": "CSI 3702", + "title": "Communication, Culture and Identity" + }, + { + "name": "CSI 3703", + "title": "Intercultural Communication in the Workplace" + }, + { + "name": "CSI 3801", + "title": "Social Science Research Methods of Social Influence" + }, + { + "name": "CSI 3896", + "title": "Rhetorical Criticism" + }, + { + "name": "CSI 4111", + "title": "Senior Seminar" + }, + { + "name": "CSI 4201", + "title": "Communication, Attitudes, and Opinion" + }, + { + "name": "CSI 4212", + "title": "Communication and Media in New York City: Communities" + }, + { + "name": "CSI 4213", + "title": "Communication and Media in New York City: Institutions" + }, + { + "name": "CSI 4289", + "title": "Communication and Media New York City Applied Experience: Field Experience/Corporate Works/Projects" + }, + { + "name": "CSI 4402", + "title": "Multiparty Conflict Proceses: Dialogue, Facilitation and Multiparty Mediation" + }, + { + "name": "CSI 4571", + "title": "International Studies in Media and Communication" + }, + { + "name": "CSI 4601", + "title": "Narrative Persuasion" + }, + { + "name": "CSI E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CMST 1111", + "title": "Communication and Public Life" + }, + { + "name": "CMST 2111", + "title": "Communications Seminar" + }, + { + "name": "CMST 3185", + "title": "Communication Studies Internship" + }, + { + "name": "CMST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "COMM 1001", + "title": "SMC Freshman Seminar" + }, + { + "name": "COMM 3081", + "title": "Communications Special Projects" + }, + { + "name": "COMM 3082", + "title": "Communications Independent Study" + }, + { + "name": "COMM 3085", + "title": "Communications Major Internship" + }, + { + "name": "COMM 3980", + "title": "Honors Special Topic: An Introduction to Communication in Public Life" + }, + { + "name": "COMM 3990", + "title": "Honors Special Topics" + }, + { + "name": "COMM 4111", + "title": "Communications Major Senior Seminar" + }, + { + "name": "COMM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CART 3011", + "title": "Introductory Seminar in Community Arts" + }, + { + "name": "CART 3089", + "title": "Research and Project Planning Seminar in Community Arts" + }, + { + "name": "CART 4012", + "title": "Community Arts" + }, + { + "name": "CART 4089", + "title": "Evaluation and Documentation in Community Arts" + }, + { + "name": "CART 8011", + "title": "Interdisciplinary Seminar in Community Arts" + }, + { + "name": "CART 8087", + "title": "Research and Project Planning Seminar in Community Arts" + }, + { + "name": "CART 8187", + "title": "Field Work in Community Arts" + }, + { + "name": "CART 8287", + "title": "Evaluation and Documentation Seminar in Community Arts" + }, + { + "name": "CDEV 1113", + "title": "Introduction to Community Development" + }, + { + "name": "CDEV 2013", + "title": "Community Redevelopment and Revitalization" + }, + { + "name": "CDEV 2155", + "title": "Housing and Community Development" + }, + { + "name": "CDEV 2255", + "title": "Environmental Justice in Communities" + }, + { + "name": "CDEV 2354", + "title": "Cooperatives" + }, + { + "name": "CDEV 2454", + "title": "Grant Writing for Non-Profits" + }, + { + "name": "CDEV 2596", + "title": "Community Planning Analysis" + }, + { + "name": "CDEV 3113", + "title": "Nonprofit Management" + }, + { + "name": "CDEV 3155", + "title": "Healthy Community Design and Development" + }, + { + "name": "CDEV 3165", + "title": "Placemaking: Revitalizing Urban Communities" + }, + { + "name": "CDEV 3175", + "title": "Gentrification and Equitable Development" + }, + { + "name": "CDEV 3197", + "title": "Community-based Organizations" + }, + { + "name": "CDEV 3313", + "title": "Community Development Finance" + }, + { + "name": "CDEV 3334", + "title": "Community Economic Development" + }, + { + "name": "CDEV 3455", + "title": "Community Engagement and Empowerment" + }, + { + "name": "CDEV 3860", + "title": "Topics in Community Development" + }, + { + "name": "CDEV 3870", + "title": "Special Topics in Community Development" + }, + { + "name": "CDEV 3882", + "title": "Independent Study in Community Development" + }, + { + "name": "CDEV 3883", + "title": "Directed Reading/Study in Community Development" + }, + { + "name": "CDEV 4885", + "title": "Internship and Professional Practice in Community Development" + }, + { + "name": "CDEV 4889", + "title": "Community Development Workshop" + }, + { + "name": "CDEV E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CIS 0822", + "title": "Technological Horizons: Information Technology in the 21st Century" + }, + { + "name": "CIS 0823", + "title": "Math for a Digital World" + }, + { + "name": "CIS 0835", + "title": "Cyberspace & Society" + }, + { + "name": "CIS 0923", + "title": "Honors Math for a Digital World" + }, + { + "name": "CIS 0935", + "title": "Honors Cyberspace & Society" + }, + { + "name": "CIS 1001", + "title": "Introduction to Academics in Computer Science" + }, + { + "name": "CIS 1049", + "title": "Comp Tools Competency" + }, + { + "name": "CIS 1051", + "title": "Introduction to Problem Solving and Programming in Python" + }, + { + "name": "CIS 1052", + "title": "Introduction to Web Technology and Programming" + }, + { + "name": "CIS 1053", + "title": "Programming in Matlab" + }, + { + "name": "CIS 1055", + "title": "Computers and Applications" + }, + { + "name": "CIS 1056", + "title": "Advanced Web Technology and Programming" + }, + { + "name": "CIS 1057", + "title": "Computer Programming in C" + }, + { + "name": "CIS 1068", + "title": "Program Design and Abstraction" + }, + { + "name": "CIS 1166", + "title": "Mathematical Concepts in Computing I" + }, + { + "name": "CIS 1951", + "title": "Honors Introduction to Problem Solving and Programming in Python" + }, + { + "name": "CIS 1966", + "title": "Honors Mathematical Concepts in Computing I" + }, + { + "name": "CIS 1968", + "title": "Honors Program Design and Abstraction" + }, + { + "name": "CIS 2033", + "title": "Computational Probability and Statistics" + }, + { + "name": "CIS 2082", + "title": "Independent Research I" + }, + { + "name": "CIS 2107", + "title": "Computer Systems and Low-Level Programming" + }, + { + "name": "CIS 2109", + "title": "Database Management Systems" + }, + { + "name": "CIS 2166", + "title": "Mathematical Concepts in Computing II" + }, + { + "name": "CIS 2168", + "title": "Data Structures" + }, + { + "name": "CIS 2229", + "title": "Architecture, Operating Systems and Networking" + }, + { + "name": "CIS 2305", + "title": "Mobile Computing Technologies" + }, + { + "name": "CIS 3191", + "title": "Independent Research II" + }, + { + "name": "CIS 3203", + "title": "Introduction to Artificial Intelligence" + }, + { + "name": "CIS 3207", + "title": "Introduction to Systems Programming and Operating Systems" + }, + { + "name": "CIS 3211", + "title": "Automata, Computability, and Languages" + }, + { + "name": "CIS 3219", + "title": "Computer Graphics and Image Processing" + }, + { + "name": "CIS 3223", + "title": "Data Structures and Algorithms" + }, + { + "name": "CIS 3238", + "title": "Software Design" + }, + { + "name": "CIS 3242", + "title": "Discrete Structures" + }, + { + "name": "CIS 3281", + "title": "Cooperative Education Experience in Information Science & Technology" + }, + { + "name": "CIS 3287", + "title": "Software Design/Practicum" + }, + { + "name": "CIS 3296", + "title": "Software Design" + }, + { + "name": "CIS 3308", + "title": "Web Application Programming" + }, + { + "name": "CIS 3309", + "title": "Component-Based Software Design" + }, + { + "name": "CIS 3319", + "title": "Wireless Networks and Security" + }, + { + "name": "CIS 3329", + "title": "Network Architectures" + }, + { + "name": "CIS 3342", + "title": "Server-Side Web Application Development" + }, + { + "name": "CIS 3344", + "title": "Client-Side Scripting for the Web" + }, + { + "name": "CIS 3374", + "title": "Quality Assurance & Testing" + }, + { + "name": "CIS 3376", + "title": "Enterprise Resource Planning (ERP) Design and Implementation" + }, + { + "name": "CIS 3381", + "title": "Cooperative Education Experience in Computer Science" + }, + { + "name": "CIS 3513", + "title": "Introduction to iOS Application Development" + }, + { + "name": "CIS 3515", + "title": "Introduction to Mobile Application Development" + }, + { + "name": "CIS 3603", + "title": "User Experience Design" + }, + { + "name": "CIS 3605", + "title": "Introduction to Digital Forensics" + }, + { + "name": "CIS 3715", + "title": "Principles of Data Science" + }, + { + "name": "CIS 3775", + "title": "Information Technology Project Management" + }, + { + "name": "CIS 4083", + "title": "Directed Reading/Study" + }, + { + "name": "CIS 4105", + "title": "Information Technology Process Management" + }, + { + "name": "CIS 4106", + "title": "System Development Process" + }, + { + "name": "CIS 4108", + "title": "Emerging Technologies and Tools for Enterprise Management" + }, + { + "name": "CIS 4282", + "title": "Independent Study" + }, + { + "name": "CIS 4296", + "title": "Information Systems Analysis and Design" + }, + { + "name": "CIS 4305", + "title": "Real Time Computer Systems" + }, + { + "name": "CIS 4307", + "title": "Introduction to Distributed Systems and Networks" + }, + { + "name": "CIS 4308", + "title": "Development of Multi-tier Client/Server Systems" + }, + { + "name": "CIS 4319", + "title": "Computer Networks and Communications" + }, + { + "name": "CIS 4324", + "title": "Compiler Design" + }, + { + "name": "CIS 4330", + "title": "Current Topics in Information Science & Technology" + }, + { + "name": "CIS 4331", + "title": "Principles of Database Systems" + }, + { + "name": "CIS 4340", + "title": "Seminar in Information Science & Technology" + }, + { + "name": "CIS 4344", + "title": "Advanced Web Application Design & Scripting" + }, + { + "name": "CIS 4345", + "title": "Introduction to Cloud Computing" + }, + { + "name": "CIS 4350", + "title": "Seminar on Topics in Computer Science" + }, + { + "name": "CIS 4360", + "title": "Seminar on Topics in Computer Science" + }, + { + "name": "CIS 4362", + "title": "Application System Development Using Relational Technology" + }, + { + "name": "CIS 4372", + "title": "C++ Applications Programming" + }, + { + "name": "CIS 4376", + "title": "E-Commerce System Development" + }, + { + "name": "CIS 4378", + "title": "Computer and Network Security" + }, + { + "name": "CIS 4382", + "title": "Independent Study" + }, + { + "name": "CIS 4396", + "title": "Information Systems Implementation" + }, + { + "name": "CIS 4397", + "title": "Independent Research in Computer Science" + }, + { + "name": "CIS 4398", + "title": "Projects in Computer Science" + }, + { + "name": "CIS 4515", + "title": "Advanced Mobile Application Development" + }, + { + "name": "CIS 4517", + "title": "Data-Intensive and Cloud Computing" + }, + { + "name": "CIS 4523", + "title": "Knowledge Discovery and Data Mining" + }, + { + "name": "CIS 4524", + "title": "Analysis and Modeling of Social and Information Networks" + }, + { + "name": "CIS 4526", + "title": "Foundations of Machine Learning" + }, + { + "name": "CIS 4615", + "title": "Ethical Hacking and Intrusion Forensics" + }, + { + "name": "CIS 4625", + "title": "Audit and Compliance for Security and Digital Forensics" + }, + { + "name": "CIS 5001", + "title": "Comp-Based Appl Prog" + }, + { + "name": "CIS 5002", + "title": "Database Design & Programming" + }, + { + "name": "CIS 5003", + "title": "Networking & Operating Systems" + }, + { + "name": "CIS 5011", + "title": "Programming and Data Structure" + }, + { + "name": "CIS 5012", + "title": "System Software and Operating Systems" + }, + { + "name": "CIS 5013", + "title": "Discrete Structure of Computer Science" + }, + { + "name": "CIS 5015", + "title": "Scripting for Sciences and Business" + }, + { + "name": "CIS 5016", + "title": "Data Structures and Objects" + }, + { + "name": "CIS 5017", + "title": "Operating Systems and Architecture" + }, + { + "name": "CIS 5105", + "title": "IT Process Management" + }, + { + "name": "CIS 5106", + "title": "System Development Processes" + }, + { + "name": "CIS 5107", + "title": "Comp Systems Security&Privacy" + }, + { + "name": "CIS 5108", + "title": "Emerging Technologies" + }, + { + "name": "CIS 5208", + "title": "Knowledge Management" + }, + { + "name": "CIS 5210", + "title": "Seminar in Information Science and Technology" + }, + { + "name": "CIS 5274", + "title": "Software Quality Assurance and Testing" + }, + { + "name": "CIS 5275", + "title": "Software Project Management" + }, + { + "name": "CIS 5301", + "title": "Advanced Database Management Systems" + }, + { + "name": "CIS 5303", + "title": "Usability Engineering" + }, + { + "name": "CIS 5304", + "title": "Network Technologies" + }, + { + "name": "CIS 5306", + "title": "Software Engineering" + }, + { + "name": "CIS 5405", + "title": "Introduction to Digital Forensics" + }, + { + "name": "CIS 5410", + "title": "Advanced Seminar in Information Science and Technology" + }, + { + "name": "CIS 5415", + "title": "Ethical Hacking and Intrusion Forensics" + }, + { + "name": "CIS 5425", + "title": "Audit and Compliance for Security and Digital Forensics" + }, + { + "name": "CIS 5511", + "title": "Programming Techniques" + }, + { + "name": "CIS 5512", + "title": "Operating Systems" + }, + { + "name": "CIS 5513", + "title": "Automata and Formal Languages" + }, + { + "name": "CIS 5515", + "title": "Design and Analysis of Algorithms" + }, + { + "name": "CIS 5516", + "title": "Principles of Data Management" + }, + { + "name": "CIS 5517", + "title": "Data-Intensive and Cloud Computing" + }, + { + "name": "CIS 5523", + "title": "Knowledge Discovery and Data Mining" + }, + { + "name": "CIS 5524", + "title": "Analysis and Modeling of Social and Information Networks" + }, + { + "name": "CIS 5525", + "title": "Neural Computation" + }, + { + "name": "CIS 5526", + "title": "Machine Learning" + }, + { + "name": "CIS 5527", + "title": "Data Warehousing, Filtering and Mining" + }, + { + "name": "CIS 5535", + "title": "Probabilistic Graph Models" + }, + { + "name": "CIS 5538", + "title": "Text Mining and Language Processing" + }, + { + "name": "CIS 5543", + "title": "Computer Vision" + }, + { + "name": "CIS 5590", + "title": "Topics in Computer Science" + }, + { + "name": "CIS 5603", + "title": "Artificial Intelligence" + }, + { + "name": "CIS 5617", + "title": "Computer Networking and Communication" + }, + { + "name": "CIS 5618", + "title": "Energy Management in Data Centers and Beyond" + }, + { + "name": "CIS 5635", + "title": "Security in Cyber-Physical Systems" + }, + { + "name": "CIS 5636", + "title": "Ad Hoc Networks" + }, + { + "name": "CIS 5637", + "title": "Network & Information Security" + }, + { + "name": "CIS 5639", + "title": "Wireless Network and Communication" + }, + { + "name": "CIS 5642", + "title": "Computer Architecture" + }, + { + "name": "CIS 5643", + "title": "Emerging Storage Systems and Technologies" + }, + { + "name": "CIS 5644", + "title": "Distributed Systems" + }, + { + "name": "CIS 5701", + "title": "Introduction to Teaching Computer Science Principles" + }, + { + "name": "CIS 5702", + "title": "Teaching Advanced Computer Science Principles" + }, + { + "name": "CIS 5703", + "title": "Teaching Networked Computing Systems" + }, + { + "name": "CIS 5704", + "title": "Teaching the Use of Data, Algorithms, and Creativity for Problem Solving" + }, + { + "name": "CIS 9182", + "title": "Independent Study" + }, + { + "name": "CIS 9190", + "title": "Seminars in Computer and Information Science" + }, + { + "name": "CIS 9282", + "title": "Independent Study" + }, + { + "name": "CIS 9590", + "title": "Seminar in Advanced Topics in Computer Science" + }, + { + "name": "CIS 9601", + "title": "Computer Graphics and Image Processing" + }, + { + "name": "CIS 9602", + "title": "User Interface Design and Systems Integration" + }, + { + "name": "CIS 9618", + "title": "Web Applications Development" + }, + { + "name": "CIS 9651", + "title": "Artificial Intelligence, Heurisitic Models, and Education" + }, + { + "name": "CIS 9665", + "title": "Advanced Topics in Data Base Systems" + }, + { + "name": "CIS 9666", + "title": "Advanced Networks and Client-Server Computing" + }, + { + "name": "CIS 9668", + "title": "Design and Development of E-Commerce Systems" + }, + { + "name": "CIS 9669", + "title": "Distributed and Parallel Computer Systems" + }, + { + "name": "CIS 9991", + "title": "Master's Research Projects" + }, + { + "name": "CIS 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "CIS 9995", + "title": "Capstone Project" + }, + { + "name": "CIS 9996", + "title": "Master's Thesis Research" + }, + { + "name": "CIS 9998", + "title": "Pre-Dissertation Research / Elevation to Candidacy" + }, + { + "name": "CIS 9999", + "title": "Dissertation Research" + }, + { + "name": "CIS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CIS L000", + "title": "Elective LL" + }, + { + "name": "CIS L001", + "title": "Elective" + }, + { + "name": "CIS L007", + "title": "Elective" + }, + { + "name": "CIS P000", + "title": "Elective P" + }, + { + "name": "CIS T000", + "title": "Elective" + }, + { + "name": "CIS U000", + "title": "Elective UL" + }, + { + "name": "CMT 1005", + "title": "Elements of Surveying" + }, + { + "name": "CMT 2010", + "title": "Computers and Special Topics" + }, + { + "name": "CMT 2124", + "title": "Construction Methods and Materials" + }, + { + "name": "CMT 2125", + "title": "Construction Contracts and Specifications " + }, + { + "name": "CMT 2271", + "title": "Building Systems" + }, + { + "name": "CMT 3121", + "title": "Construction Estimating" + }, + { + "name": "CMT 3123", + "title": "Construction Estimating Laboratory" + }, + { + "name": "CMT 3145", + "title": "Structural Analysis" + }, + { + "name": "CMT 3322", + "title": "Construction Planning and Scheduling" + }, + { + "name": "CMT 3333", + "title": "Soils Mechanics" + }, + { + "name": "CMT 3341", + "title": "Environmental and Safety Aspects of Construction" + }, + { + "name": "CMT 3351", + "title": "Applied Hydraulics" + }, + { + "name": "CMT 4040", + "title": "CMT - Special Topics" + }, + { + "name": "CMT 4182", + "title": "Independent Study in Construction Management Technology" + }, + { + "name": "CMT 4183", + "title": "Directed Study in Construction Management Technology" + }, + { + "name": "CMT 4191", + "title": "Independent Research in Construction Management Technology" + }, + { + "name": "CMT 4335", + "title": "Steel and Wood Structures" + }, + { + "name": "CMT 4336", + "title": "Concrete and Masonry Design" + }, + { + "name": "CMT 4355", + "title": "Transportation Systems Management" + }, + { + "name": "CMT 4373", + "title": "Construction Financial Management" + }, + { + "name": "CMT 4396", + "title": "Capstone in Construction" + }, + { + "name": "CMT 4397", + "title": "Capstone in Design" + }, + { + "name": "CMT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CMT T000", + "title": "Elective" + }, + { + "name": "CPSY 2301", + "title": "Helping Professions for Diverse Populations" + }, + { + "name": "CPSY 2302", + "title": "Can We Talk? Real World Interviewing" + }, + { + "name": "CPSY 3571", + "title": "Introduction to Counseling Psychology" + }, + { + "name": "CPSY 3572", + "title": "Interviewing Techniques" + }, + { + "name": "CPSY 5492", + "title": "Theories of Counseling Psychology" + }, + { + "name": "CPSY 5511", + "title": "Counseling in the Schools" + }, + { + "name": "CPSY 5519", + "title": "Group Counseling" + }, + { + "name": "CPSY 5526", + "title": "Multicultural Counseling" + }, + { + "name": "CPSY 5564", + "title": "Addiction, Counseling, and Biological Bases of Behavior" + }, + { + "name": "CPSY 5565", + "title": "Educational Specialists Coordinating Community Resources for Diverse Learners" + }, + { + "name": "CPSY 5566", + "title": "Professional Issues in Mental Health Counseling" + }, + { + "name": "CPSY 5571", + "title": "Introduction to Counseling Psychology" + }, + { + "name": "CPSY 5572", + "title": "Interviewing Techniques" + }, + { + "name": "CPSY 5579", + "title": "Introduction to Couples and Family Counseling" + }, + { + "name": "CPSY 5591", + "title": "Legal and Ethical Issues in Counseling Psychology" + }, + { + "name": "CPSY 5593", + "title": "Career Counseling and Development" + }, + { + "name": "CPSY 5668", + "title": "Sem Counseling: Dev Psych" + }, + { + "name": "CPSY 5691", + "title": "Diagnosis in Counseling Psychology" + }, + { + "name": "CPSY 5694", + "title": "Introduction to Assessment" + }, + { + "name": "CPSY 5698", + "title": "Fundamental Counseling Techniques" + }, + { + "name": "CPSY 5699", + "title": "Crisis Prevention, Intervention, and Consultation" + }, + { + "name": "CPSY 8701", + "title": "Seminar in Counseling Supervision and Consultation" + }, + { + "name": "CPSY 8764", + "title": "Seminar in Counseling and Psycho-pathology" + }, + { + "name": "CPSY 8789", + "title": "Seminar in Race, Culture, and Gender in Psychotherapy" + }, + { + "name": "CPSY 8790", + "title": "Seminar in Counseling" + }, + { + "name": "CPSY 8791", + "title": "Seminar in Learning Theory and Behavior Therapy" + }, + { + "name": "CPSY 8792", + "title": "Seminar in Theories and Systems of Psychology and Counseling" + }, + { + "name": "CPSY 8793", + "title": "Seminar in Assessment" + }, + { + "name": "CPSY 8794", + "title": "Seminar in Group Counseling and Group Therapy" + }, + { + "name": "CPSY 8795", + "title": "Seminar in Family Psychology" + }, + { + "name": "CPSY 8796", + "title": "Seminar in Neuropsychology" + }, + { + "name": "CPSY 8797", + "title": "Seminar in Legal and Ethical Issues in Counseling and Psychotherapy" + }, + { + "name": "CPSY 8799", + "title": "Community Counseling Clinic" + }, + { + "name": "CPSY 9085", + "title": "Advanced Counseling Techniques" + }, + { + "name": "CPSY 9185", + "title": "Master's Internship in Counseling Psychology" + }, + { + "name": "CPSY 9285", + "title": "Master's Internship in Counseling Psychology" + }, + { + "name": "CPSY 9385", + "title": "Internship in Counseling Psychology" + }, + { + "name": "CPSY 9387", + "title": "Practicum in Counseling Psychology I & II" + }, + { + "name": "CPSY 9982", + "title": "Independent Study in Counseling" + }, + { + "name": "CPSY 9999", + "title": "Doctoral Dissertation in Counseling Psychology" + }, + { + "name": "CPSY E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CPSY T000", + "title": "Elective" + }, + { + "name": "CRFT 2151", + "title": "Beginning Ceramics" + }, + { + "name": "CRFT 2152", + "title": "Introduction to Beginning Ceramics for Non-Tyler BFA Majors" + }, + { + "name": "CRFT 2161", + "title": "Intermediate Ceramics" + }, + { + "name": "CRFT 2237", + "title": "Glass Construction, Topic: Kiln Working" + }, + { + "name": "CRFT 2238", + "title": "Glass Construction, Topic: Cold Glass" + }, + { + "name": "CRFT 2258", + "title": "Introduction to Glass" + }, + { + "name": "CRFT 2259", + "title": "Introduction to Glass for Non-Tyler BFA Majors" + }, + { + "name": "CRFT 2261", + "title": "Intermediate Glass" + }, + { + "name": "CRFT 2302", + "title": "Book Structures" + }, + { + "name": "CRFT 2304", + "title": "Introduction to Fibers for Non-Tyler BFA Majors" + }, + { + "name": "CRFT 2305", + "title": "Dyeing for Color I" + }, + { + "name": "CRFT 2312", + "title": "Alternative Materials" + }, + { + "name": "CRFT 2317", + "title": "Introduction to Fibers and Material Studies" + }, + { + "name": "CRFT 2318", + "title": "Woven Structure I" + }, + { + "name": "CRFT 2408", + "title": "Electroforming Workshop" + }, + { + "name": "CRFT 2409", + "title": "Color in Metals" + }, + { + "name": "CRFT 2413", + "title": "Machine Tool Processes" + }, + { + "name": "CRFT 2415", + "title": "Production Processes" + }, + { + "name": "CRFT 2432", + "title": "Introduction to CAD for Non-Tyler BFA Students" + }, + { + "name": "CRFT 2433", + "title": "CAD/CAM I Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "CRFT 2434", + "title": "CAD/CAM II Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "CRFT 2452", + "title": "Introduction to Jewelry for Non-Tyler BFA Students" + }, + { + "name": "CRFT 2453", + "title": "Jewelry" + }, + { + "name": "CRFT 2454", + "title": "Jewelry" + }, + { + "name": "CRFT 2457", + "title": "Plastics for Jewelry and Objects" + }, + { + "name": "CRFT 2459", + "title": "Metalsmithing" + }, + { + "name": "CRFT 2471", + "title": "Lapidary and Stone Setting" + }, + { + "name": "CRFT 2473", + "title": "Enameling" + }, + { + "name": "CRFT 2475", + "title": "Casting" + }, + { + "name": "CRFT 2476", + "title": "Casting" + }, + { + "name": "CRFT 2479", + "title": "Photo Processes and Etching Jewelry" + }, + { + "name": "CRFT 3148", + "title": "Ceramic Mold Making" + }, + { + "name": "CRFT 3151", + "title": "Two-Dimensional Ceramics" + }, + { + "name": "CRFT 3153", + "title": "Ceramic Materials" + }, + { + "name": "CRFT 3158", + "title": "Porcelain" + }, + { + "name": "CRFT 3161", + "title": "Advanced Throwing and Wheel Work" + }, + { + "name": "CRFT 3162", + "title": "Advanced Ceramics" + }, + { + "name": "CRFT 3167", + "title": "Ceramic Structures" + }, + { + "name": "CRFT 3170", + "title": "Ceramic Workshop" + }, + { + "name": "CRFT 3185", + "title": "Field Internship in Ceramics" + }, + { + "name": "CRFT 3231", + "title": "Hot Glass, Topic: Blowing" + }, + { + "name": "CRFT 3237", + "title": "Glass Construction, Topic: Kiln Working" + }, + { + "name": "CRFT 3238", + "title": "Glass Construction, Topic: Cold Glass" + }, + { + "name": "CRFT 3241", + "title": "Glass Workshop" + }, + { + "name": "CRFT 3242", + "title": "Hot Glass Casting" + }, + { + "name": "CRFT 3243", + "title": "Advanced Glass Seminar" + }, + { + "name": "CRFT 3244", + "title": "Advanced Glass, Topic: Visiting Artist Series" + }, + { + "name": "CRFT 3285", + "title": "Field Internship in Glass" + }, + { + "name": "CRFT 3300", + "title": "Special Topics in Fibers and Material Studies" + }, + { + "name": "CRFT 3306", + "title": "Stitching I" + }, + { + "name": "CRFT 3307", + "title": "Soft Sculpture" + }, + { + "name": "CRFT 3311", + "title": "Body Art & Adornment" + }, + { + "name": "CRFT 3318", + "title": "Woven Structure II" + }, + { + "name": "CRFT 3322", + "title": "Alternative Materials II" + }, + { + "name": "CRFT 3325", + "title": "Sewn" + }, + { + "name": "CRFT 3327", + "title": "Intermediate Fibers and Material Studies" + }, + { + "name": "CRFT 3333", + "title": "Jacquard I" + }, + { + "name": "CRFT 3371", + "title": "Screen Print on Fabric I" + }, + { + "name": "CRFT 3385", + "title": "Field Internship in Fibers" + }, + { + "name": "CRFT 3407", + "title": "Plastics for Jewelry" + }, + { + "name": "CRFT 3408", + "title": "Electroforming Workshop" + }, + { + "name": "CRFT 3409", + "title": "Color in Metals" + }, + { + "name": "CRFT 3415", + "title": "Production Processes" + }, + { + "name": "CRFT 3433", + "title": "CAD/CAM I Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "CRFT 3434", + "title": "CAD/CAM II Computer-Aided-Design/Computer-Aided-Manufacture" + }, + { + "name": "CRFT 3435", + "title": "Advanced CAD/CAM" + }, + { + "name": "CRFT 3457", + "title": "Plastics for Jewelry and Objects" + }, + { + "name": "CRFT 3459", + "title": "Metalsmithing" + }, + { + "name": "CRFT 3463", + "title": "Enameling" + }, + { + "name": "CRFT 3465", + "title": "Junior Metalsmithing" + }, + { + "name": "CRFT 3466", + "title": "Junior Metalsmithing" + }, + { + "name": "CRFT 3469", + "title": "Metals Workshop" + }, + { + "name": "CRFT 3471", + "title": "Lapidary and Stone Setting" + }, + { + "name": "CRFT 3479", + "title": "Photo Processes and Etching Jewelry" + }, + { + "name": "CRFT 4152", + "title": "Senior Ceramics" + }, + { + "name": "CRFT 4162", + "title": "Advanced Ceramics" + }, + { + "name": "CRFT 4237", + "title": "Glass Construction, Topic: Kiln Working" + }, + { + "name": "CRFT 4238", + "title": "Glass Construction, Topic: Cold Glass" + }, + { + "name": "CRFT 4241", + "title": "Hot Glass Blowing" + }, + { + "name": "CRFT 4242", + "title": "Hot Glass Casting" + }, + { + "name": "CRFT 4244", + "title": "Advanced Glass Seminar: Visiting Artist Series" + }, + { + "name": "CRFT 4252", + "title": "Advanced Glass Seminar" + }, + { + "name": "CRFT 4282", + "title": "Independent Study" + }, + { + "name": "CRFT 4300", + "title": "Special Topics in Fibers and Material Studies" + }, + { + "name": "CRFT 4305", + "title": "Dyeing for Color II" + }, + { + "name": "CRFT 4316", + "title": "Stitching II" + }, + { + "name": "CRFT 4318", + "title": "Woven Structure III" + }, + { + "name": "CRFT 4325", + "title": "Senior Seminar in Fibers and Material Studies" + }, + { + "name": "CRFT 4333", + "title": "Jacquard II" + }, + { + "name": "CRFT 4371", + "title": "Screen Print on Fabric II" + }, + { + "name": "CRFT 4435", + "title": "Rapid Prototyping" + }, + { + "name": "CRFT 4436", + "title": "Rapid Prototyping" + }, + { + "name": "CRFT 4463", + "title": "Senior Metals and Plastics" + }, + { + "name": "CRFT 4464", + "title": "Senior Metals and Plastics" + }, + { + "name": "CRFT 4471", + "title": "Senior Seminar in Metals" + }, + { + "name": "CRFT 4485", + "title": "Field Internship Metals/Jewelry/CAD-CAM" + }, + { + "name": "CRFT 4496", + "title": "Business Practices in Crafts" + }, + { + "name": "CRFT 8183", + "title": "Graduate Projects, Ceramics" + }, + { + "name": "CRFT 8184", + "title": "Graduate Projects, Ceramics II" + }, + { + "name": "CRFT 8201", + "title": "Graduate Seminar, Ceramics/Glass/Fibers" + }, + { + "name": "CRFT 8202", + "title": "Graduate Seminar, Ceramics/Glass/Fibers II" + }, + { + "name": "CRFT 8283", + "title": "Graduate Projects, Glass" + }, + { + "name": "CRFT 8284", + "title": "Graduate Projects, Glass II" + }, + { + "name": "CRFT 8383", + "title": "Graduate Projects, Fibers" + }, + { + "name": "CRFT 8384", + "title": "Graduate Projects, Fibers II" + }, + { + "name": "CRFT 8401", + "title": "Graduate Seminar, Metals" + }, + { + "name": "CRFT 8402", + "title": "Metals Workshop" + }, + { + "name": "CRFT 8403", + "title": "Graduate Seminar, Metals II" + }, + { + "name": "CRFT 8483", + "title": "Graduate Projects, Metals" + }, + { + "name": "CRFT 8484", + "title": "Graduate Projects, Metals II" + }, + { + "name": "CRFT 9182", + "title": "Graduate Independent Study" + }, + { + "name": "CRFT 9184", + "title": "Graduate Thesis Exhibition: Clay" + }, + { + "name": "CRFT 9284", + "title": "Graduate Thesis Exhibition: Glass" + }, + { + "name": "CRFT 9295", + "title": "Graduate Thesis Research: Ceramics and Glass" + }, + { + "name": "CRFT 9384", + "title": "Graduate Thesis Exhibition: Fibers" + }, + { + "name": "CRFT 9395", + "title": "Graduate Thesis Research: Fibers" + }, + { + "name": "CRFT 9484", + "title": "Graduate Thesis Exhibition: Metals" + }, + { + "name": "CRFT 9495", + "title": "Graduate Thesis Research: Metals" + }, + { + "name": "CRFT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CRFT T000", + "title": "Elective" + }, + { + "name": "CJ 0812", + "title": "Criminal Behavior" + }, + { + "name": "CJ 0852", + "title": "Justice in America" + }, + { + "name": "CJ 0853", + "title": "Doing Justice" + }, + { + "name": "CJ 0912", + "title": "Honors Criminal Behavior" + }, + { + "name": "CJ 0952", + "title": "Honors: Justice in America" + }, + { + "name": "CJ 0953", + "title": "Honors: Doing Justice" + }, + { + "name": "CJ 1001", + "title": "Introduction to Criminal Justice" + }, + { + "name": "CJ 1002", + "title": "Professional Development in Criminal Justice" + }, + { + "name": "CJ 1009", + "title": "Discovering Criminal Justice" + }, + { + "name": "CJ 1901", + "title": "Honors Introduction to Criminal Justice" + }, + { + "name": "CJ 2000", + "title": "Special Topics" + }, + { + "name": "CJ 2001", + "title": "Introduction to Juvenile Justice" + }, + { + "name": "CJ 2002", + "title": "Victims in Society" + }, + { + "name": "CJ 2101", + "title": "Introduction to Law Enforcement " + }, + { + "name": "CJ 2201", + "title": "Criminal Courts and Criminal Justice " + }, + { + "name": "CJ 2301", + "title": "Introduction to Corrections " + }, + { + "name": "CJ 2304", + "title": "Ethics, Crime, and Justice" + }, + { + "name": "CJ 2401", + "title": "Nature of Crime" + }, + { + "name": "CJ 2501", + "title": "Introduction to Criminal Law" + }, + { + "name": "CJ 2597", + "title": "Criminal Justice Research Methods" + }, + { + "name": "CJ 2601", + "title": "Introduction to Criminal Justice Research " + }, + { + "name": "CJ 2602", + "title": "Criminal Justice Statistics" + }, + { + "name": "CJ 2696", + "title": "Planned Change" + }, + { + "name": "CJ 2701", + "title": "Inside-Out Prison Exchange" + }, + { + "name": "CJ 3000", + "title": "Special Topics" + }, + { + "name": "CJ 3002", + "title": "Drugs, Crime, and Justice" + }, + { + "name": "CJ 3003", + "title": "Race and Criminal Justice" + }, + { + "name": "CJ 3004", + "title": "Women and Criminal Justice" + }, + { + "name": "CJ 3005", + "title": "Historical Roots of Urban Crime" + }, + { + "name": "CJ 3006", + "title": "Crime and Justice Around the World" + }, + { + "name": "CJ 3007", + "title": "Computer Crime" + }, + { + "name": "CJ 3101", + "title": "Police Organization and Management" + }, + { + "name": "CJ 3102", + "title": "Community and Crime Prevention" + }, + { + "name": "CJ 3201", + "title": "The American Jury System" + }, + { + "name": "CJ 3301", + "title": "Community Corrections" + }, + { + "name": "CJ 3302", + "title": "Prisons in America" + }, + { + "name": "CJ 3303", + "title": "Rehabilitation of the Offender" + }, + { + "name": "CJ 3304", + "title": "Capital Punishment" + }, + { + "name": "CJ 3401", + "title": "White Collar Crime" + }, + { + "name": "CJ 3402", + "title": "Street-Level Criminology" + }, + { + "name": "CJ 3403", + "title": "Organized Crime " + }, + { + "name": "CJ 3404", + "title": "Urban Crime Patterns" + }, + { + "name": "CJ 3405", + "title": "Terrorism, Transnational Crime and Global Security" + }, + { + "name": "CJ 3406", + "title": "Youth and Crime" + }, + { + "name": "CJ 3407", + "title": "Violence, Crime, and Justice" + }, + { + "name": "CJ 3408", + "title": "Psychology and Criminal Justice" + }, + { + "name": "CJ 3409", + "title": "Criminal Gangs" + }, + { + "name": "CJ 3501", + "title": "Criminal Procedure: Police Phase" + }, + { + "name": "CJ 3502", + "title": "Criminal Procedure: Prosecution & Adjudication" + }, + { + "name": "CJ 3503", + "title": "Sex Crimes and the Law" + }, + { + "name": "CJ 3601", + "title": "Legal Research" + }, + { + "name": "CJ 3602", + "title": "Evidence-Based Policing" + }, + { + "name": "CJ 3701", + "title": "Land Management and Federal Law Enforcement" + }, + { + "name": "CJ 3901", + "title": "Honors Issues in Criminal Procedure" + }, + { + "name": "CJ 3902", + "title": "Honors: Environmental Criminology" + }, + { + "name": "CJ 3903", + "title": "Honors: Psychology and Criminal Justice" + }, + { + "name": "CJ 3904", + "title": "Honors: Drugs, Crime, and Criminal Justice" + }, + { + "name": "CJ 4000", + "title": "Special Topics" + }, + { + "name": "CJ 4001", + "title": "Crime and Social Policy" + }, + { + "name": "CJ 4075", + "title": "Criminal Justice Internship Seminar" + }, + { + "name": "CJ 4082", + "title": "Independent Study" + }, + { + "name": "CJ 4085", + "title": "Criminal Justice Internship" + }, + { + "name": "CJ 4096", + "title": "Writing Seminar: Crime and Social Policy" + }, + { + "name": "CJ 4097", + "title": "CJ Capstone Seminar" + }, + { + "name": "CJ 4098", + "title": "Writing Seminar: Gender and Criminal Justice" + }, + { + "name": "CJ 4101", + "title": "Critical Issues in Law Enforcement" + }, + { + "name": "CJ 4196", + "title": "Writing Seminar: Critical Issues in Law Enforcement" + }, + { + "name": "CJ 4901", + "title": "Honors Reform Strategies in Criminal Justice" + }, + { + "name": "CJ 4911", + "title": "Honors Crime and Social Policy" + }, + { + "name": "CJ 4941", + "title": "Honors Youth and Crime" + }, + { + "name": "CJ 5001", + "title": "Evidence-Based Policing" + }, + { + "name": "CJ 5011", + "title": "Influencing Decision-Makers" + }, + { + "name": "CJ 5012", + "title": "Crime Science Tools and Techniques" + }, + { + "name": "CJ 5021", + "title": "Ethical Governance" + }, + { + "name": "CJ 5022", + "title": "Developmental Leadership" + }, + { + "name": "CJ 5023", + "title": "Seminar in Executive Management" + }, + { + "name": "CJ 8001", + "title": "The American Criminal Justice System" + }, + { + "name": "CJ 8101", + "title": "Decision Making in Criminal Justice" + }, + { + "name": "CJ 8102", + "title": "Research Methods in Criminal Justice" + }, + { + "name": "CJ 8104", + "title": "Law and Social Order" + }, + { + "name": "CJ 8105", + "title": "Statistical Issues and Analysis of Criminal Justice Data" + }, + { + "name": "CJ 8106", + "title": "Theories of Crime and Deviance" + }, + { + "name": "CJ 8201", + "title": "Court Processes and Administration" + }, + { + "name": "CJ 8202", + "title": "Corrections" + }, + { + "name": "CJ 8203", + "title": "Issues in Law Enforcement" + }, + { + "name": "CJ 8204", + "title": "Policy and Practice in Juvenile Justice" + }, + { + "name": "CJ 8205", + "title": "Aggression and Violence" + }, + { + "name": "CJ 8221", + "title": "Qualitative Approaches to Research" + }, + { + "name": "CJ 8222", + "title": "Simulation Modeling" + }, + { + "name": "CJ 8223", + "title": "Risk, Prediction and Classification" + }, + { + "name": "CJ 8224", + "title": "Drugs, Crime and Justice" + }, + { + "name": "CJ 8225", + "title": "Rehabilitation, Reentry and Recidivism" + }, + { + "name": "CJ 8226", + "title": "Transnational and Global Crime" + }, + { + "name": "CJ 8227", + "title": "Contemporary Issues in Youth Crime: Gangs" + }, + { + "name": "CJ 8228", + "title": "Race, Crime, and Justice" + }, + { + "name": "CJ 8231", + "title": "Environmental Justice" + }, + { + "name": "CJ 8232", + "title": "Crime Mapping" + }, + { + "name": "CJ 8233", + "title": "Communities and Crime" + }, + { + "name": "CJ 8234", + "title": "Criminal Victimization and Criminal Justice" + }, + { + "name": "CJ 8235", + "title": "Criminal Justice Organization: Structure, Process and Change" + }, + { + "name": "CJ 8236", + "title": "Organized Crime" + }, + { + "name": "CJ 8237", + "title": "Program Planning and Evaluation in Criminal Justice" + }, + { + "name": "CJ 8302", + "title": "Advanced Methods and Issues in Criminal Justice Research" + }, + { + "name": "CJ 8305", + "title": "Advanced Statistical Issues in Criminal Justice Data" + }, + { + "name": "CJ 8310", + "title": "Special Topics Seminar" + }, + { + "name": "CJ 8320", + "title": "Seminar in Criminal Justice Policy" + }, + { + "name": "CJ 8330", + "title": "Seminar - Advanced Research Topics" + }, + { + "name": "CJ 9082", + "title": "Independent Study" + }, + { + "name": "CJ 9083", + "title": "Directed Readings" + }, + { + "name": "CJ 9982", + "title": "Research Seminar in Criminal Justice" + }, + { + "name": "CJ 9991", + "title": "Directed Research" + }, + { + "name": "CJ 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "CJ 9996", + "title": "Thesis Research" + }, + { + "name": "CJ 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "CJ 9999", + "title": "Doctoral Dissertation Research" + }, + { + "name": "CJ E000", + "title": "Elective - needs evaluation" + }, + { + "name": "CJ L000", + "title": "Elective LL" + }, + { + "name": "CJ P000", + "title": "Elective P" + }, + { + "name": "CJ U000", + "title": "Elective UL" + }, + { + "name": "DANC 0806", + "title": "The Jazz Century in America" + }, + { + "name": "DANC 0827", + "title": "Philadelphia Dance Experience" + }, + { + "name": "DANC 0828", + "title": "Embodying Pluralism" + }, + { + "name": "DANC 0831", + "title": "Shall We Dance? Dance as Narrative in American Film" + }, + { + "name": "DANC 0931", + "title": "Honors Shall We Dance? Dance as Narrative in American Film" + }, + { + "name": "DANC 1801", + "title": "First Year Seminar in Dance" + }, + { + "name": "DANC 1804", + "title": "Jazz Dance I" + }, + { + "name": "DANC 1805", + "title": "Tap Technique I" + }, + { + "name": "DANC 1807", + "title": "Hatha Yoga I" + }, + { + "name": "DANC 1808", + "title": "Flamenco" + }, + { + "name": "DANC 1811", + "title": "Movement Improvisation I" + }, + { + "name": "DANC 1812", + "title": "Movement Improvisation II" + }, + { + "name": "DANC 1813", + "title": "Dance Repertory I" + }, + { + "name": "DANC 1814", + "title": "Graham-Based Technique" + }, + { + "name": "DANC 1815", + "title": "Modern Dance Technique I A" + }, + { + "name": "DANC 1816", + "title": "Rhythmic Analysis" + }, + { + "name": "DANC 1817", + "title": "Modern Dance Technique I B" + }, + { + "name": "DANC 1818", + "title": "Elements of Modern Dance III" + }, + { + "name": "DANC 1819", + "title": "Dance Production" + }, + { + "name": "DANC 1821", + "title": "Michael Jackson: Entertainer, Artist, Celebrity" + }, + { + "name": "DANC 1831", + "title": "Ballet I A" + }, + { + "name": "DANC 1832", + "title": "Ballet I B" + }, + { + "name": "DANC 1834", + "title": "Contemporary Dance Practices: Introduction to African Diasporic Dance Traditions" + }, + { + "name": "DANC 1835", + "title": "Contemporary Dance Practices: Foundational Principles of Early Modern Dance I" + }, + { + "name": "DANC 1836", + "title": "Contemporary Dance Practices: Introduction to Classical Ballet" + }, + { + "name": "DANC 1837", + "title": "Contemporary Dance Practices: Neo-Traditional West African Dance I" + }, + { + "name": "DANC 1838", + "title": "Contemporary Dance Practices: Foundational Principles of Early Modern Dance II" + }, + { + "name": "DANC 1839", + "title": "Contemporary Dance Practices: Classical Ballet Enchainments" + }, + { + "name": "DANC 1841", + "title": "Music for Dancers" + }, + { + "name": "DANC 1851", + "title": "Global Dance Traditions" + }, + { + "name": "DANC 1852", + "title": "Ways of Knowing Dance" + }, + { + "name": "DANC 2801", + "title": "Entry to Dance as Art" + }, + { + "name": "DANC 2802", + "title": "Pathways in American Dance" + }, + { + "name": "DANC 2803", + "title": "Dance in Human Society" + }, + { + "name": "DANC 2805", + "title": "Dance, Movement, and Pluralism" + }, + { + "name": "DANC 2813", + "title": "Dance Composition I" + }, + { + "name": "DANC 2814", + "title": "Dance Composition II" + }, + { + "name": "DANC 2815", + "title": "Modern Dance Technique II A" + }, + { + "name": "DANC 2816", + "title": "Intermediate Modern Dance II" + }, + { + "name": "DANC 2817", + "title": "Modern Dance Technique II B" + }, + { + "name": "DANC 2818", + "title": "Intermediate Modern Dance IV" + }, + { + "name": "DANC 2822", + "title": "Pilates: Body Conditioning" + }, + { + "name": "DANC 2823", + "title": "Pilates II: Applications" + }, + { + "name": "DANC 2831", + "title": "Ballet II A" + }, + { + "name": "DANC 2832", + "title": "Ballet II B " + }, + { + "name": "DANC 2833", + "title": "Contemporary Dance Practices: Global Ballet Styles and Conventions" + }, + { + "name": "DANC 2834", + "title": "Contemporary Dance Practices: Neo-Traditional West African Dance II" + }, + { + "name": "DANC 2835", + "title": "Contemporary Dance Practices: Post-Judson Dance Practices I" + }, + { + "name": "DANC 2836", + "title": "Pointe I" + }, + { + "name": "DANC 2837", + "title": "Contemporary Dance Practices: Umfundalai Technique I" + }, + { + "name": "DANC 2838", + "title": "Contemporary Dance Practices: Post-Judson Dance Practices II" + }, + { + "name": "DANC 2839", + "title": "Contemporary Dance Practices: Contemporary Approaches to Ballet" + }, + { + "name": "DANC 2844", + "title": "Hip Hop" + }, + { + "name": "DANC 2853", + "title": "African Dance I" + }, + { + "name": "DANC 2861", + "title": "Non-Western Dance Traditions" + }, + { + "name": "DANC 2862", + "title": "Foundations of Dance Pedagogy" + }, + { + "name": "DANC 2868", + "title": "Studies in Dance" + }, + { + "name": "DANC 2869", + "title": "Studies in Dance Technique" + }, + { + "name": "DANC 2872", + "title": "Foundations of Dance Education" + }, + { + "name": "DANC 2897", + "title": "Creative Process in Dance" + }, + { + "name": "DANC 2901", + "title": "Honors Entry to Dance as Art" + }, + { + "name": "DANC 2904", + "title": "Honors Dance in Human Society" + }, + { + "name": "DANC 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "DANC 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "DANC 3811", + "title": "Field Experience in Dance" + }, + { + "name": "DANC 3812", + "title": "Creative Process in Dance" + }, + { + "name": "DANC 3813", + "title": "Dance Repertory II" + }, + { + "name": "DANC 3815", + "title": "Dance Composition III" + }, + { + "name": "DANC 3817", + "title": "Modern Dance Technique III A" + }, + { + "name": "DANC 3818", + "title": "Modern Dance Technique III B" + }, + { + "name": "DANC 3831", + "title": "Ballet Technique III A" + }, + { + "name": "DANC 3832", + "title": "Ballet Technique III B" + }, + { + "name": "DANC 3834", + "title": "Contemporary Dance Practices: Umfundalai Technique II" + }, + { + "name": "DANC 3835", + "title": "Contemporary Dance Practices: Somatic Explorations within Post-Judson Dance Practices I" + }, + { + "name": "DANC 3837", + "title": "Contemporary Dance Practices: Hip Hop I" + }, + { + "name": "DANC 3838", + "title": "Contemporary Dance Practices: Somatic Explorations within Post-Judson Dance Practices II" + }, + { + "name": "DANC 3851", + "title": "Lighting Design for Dance" + }, + { + "name": "DANC 3853", + "title": "African Dance II" + }, + { + "name": "DANC 3868", + "title": "Studies in Dance" + }, + { + "name": "DANC 3871", + "title": "Dance and the Child" + }, + { + "name": "DANC 3872", + "title": "Dancing Places" + }, + { + "name": "DANC 3876", + "title": "Rhythmic Analysis" + }, + { + "name": "DANC 3882", + "title": "Independent Study in Dance" + }, + { + "name": "DANC 3896", + "title": "Dancing Cultures" + }, + { + "name": "DANC 3897", + "title": "Making Meaning in Dance" + }, + { + "name": "DANC 4806", + "title": "Somatic Theater" + }, + { + "name": "DANC 4811", + "title": "African Dance Repertory" + }, + { + "name": "DANC 4815", + "title": "Modern Dance Technique IV A" + }, + { + "name": "DANC 4817", + "title": "Modern Dance Technique IV B" + }, + { + "name": "DANC 4819", + "title": "Advanced Modern Dance III" + }, + { + "name": "DANC 4821", + "title": "Adv Modern Dance IV" + }, + { + "name": "DANC 4831", + "title": "Introduction to Laban Movement Analysis" + }, + { + "name": "DANC 4832", + "title": "Ballet Technique IV A" + }, + { + "name": "DANC 4833", + "title": "Ballet Technique IV B" + }, + { + "name": "DANC 4834", + "title": "Contemporary Dance Practices: Hip Hop II" + }, + { + "name": "DANC 4835", + "title": "Contemporary Dance Practices: Contemporary Matters in 21st Century Hybrid Dance Forms I" + }, + { + "name": "DANC 4837", + "title": "Contemporary Dance Practices: Contemporary Matters in African Diasporic Dance" + }, + { + "name": "DANC 4838", + "title": "Contemporary Dance Practices: Contemporary Matters in 21st Century Hybrid Dance Forms II" + }, + { + "name": "DANC 4842", + "title": "Jazz Dance II" + }, + { + "name": "DANC 4843", + "title": "Jazz Dance III" + }, + { + "name": "DANC 4861", + "title": "Dance Science and Somatics" + }, + { + "name": "DANC 4864", + "title": "Dance Education Project" + }, + { + "name": "DANC 4868", + "title": "Studies in Dance" + }, + { + "name": "DANC 4871", + "title": "Movement Improvisation II" + }, + { + "name": "DANC 4872", + "title": "Creative Process in Dance" + }, + { + "name": "DANC 4874", + "title": "Dance Repertory III" + }, + { + "name": "DANC 4875", + "title": "Contact Improvisation" + }, + { + "name": "DANC 4884", + "title": "Senior Choreographic Project" + }, + { + "name": "DANC 4896", + "title": "Senior Seminar" + }, + { + "name": "DANC 4897", + "title": "Creating Dance Histories" + }, + { + "name": "DANC 8801", + "title": "Dance Techniques" + }, + { + "name": "DANC 8803", + "title": "Rhythm: Analysis, Performance and Composition" + }, + { + "name": "DANC 8804", + "title": "Dance and the Child" + }, + { + "name": "DANC 8805", + "title": "The Dancer and the Dance Medium" + }, + { + "name": "DANC 8806", + "title": "The Creative Process and the Dance Symbol" + }, + { + "name": "DANC 8808", + "title": "Corporeal Improvisation" + }, + { + "name": "DANC 8809", + "title": "Graduate Repertory" + }, + { + "name": "DANC 8812", + "title": "Performance Environments I: Dance Production" + }, + { + "name": "DANC 8815", + "title": "Performance Environments II: Producing Dance" + }, + { + "name": "DANC 8821", + "title": "Modern Dance Technique I B" + }, + { + "name": "DANC 8822", + "title": "Modern Dance Technique II A" + }, + { + "name": "DANC 8823", + "title": "Modern Dance Technique II B" + }, + { + "name": "DANC 8824", + "title": "Modern Dance Technique III A" + }, + { + "name": "DANC 8825", + "title": "Modern Dance Technique III B" + }, + { + "name": "DANC 8826", + "title": "Modern Dance Technique IV A" + }, + { + "name": "DANC 8827", + "title": "Modern Dance Technique IV B" + }, + { + "name": "DANC 8828", + "title": "African I" + }, + { + "name": "DANC 8829", + "title": "African II" + }, + { + "name": "DANC 8831", + "title": "Intro Laban Movement Analysis" + }, + { + "name": "DANC 8832", + "title": "Ballet Technique II" + }, + { + "name": "DANC 8833", + "title": "Ballet Technique III" + }, + { + "name": "DANC 8834", + "title": "Ballet Technique IV" + }, + { + "name": "DANC 8835", + "title": "Dance on Video" + }, + { + "name": "DANC 8836", + "title": "Pointe I" + }, + { + "name": "DANC 8837", + "title": "Pilates: Body Condition" + }, + { + "name": "DANC 8838", + "title": "Pilates II: Applications" + }, + { + "name": "DANC 8839", + "title": "Movement Theater Workshop" + }, + { + "name": "DANC 8841", + "title": "Apprenticeship in Dance" + }, + { + "name": "DANC 8842", + "title": "Graduate Jazz Dance Level II" + }, + { + "name": "DANC 8843", + "title": "Graduate Jazz Dance Level III" + }, + { + "name": "DANC 8845", + "title": "Sound and Movement Partnerships" + }, + { + "name": "DANC 8847", + "title": "Choreographing Philadelphia" + }, + { + "name": "DANC 8848", + "title": "Modal Practice, Structure and Performance" + }, + { + "name": "DANC 8849", + "title": "Studio Research" + }, + { + "name": "DANC 8851", + "title": "Choreographic Projects" + }, + { + "name": "DANC 8852", + "title": "Non-Western Dance Traditions" + }, + { + "name": "DANC 8853", + "title": "Lighting Design for Dance" + }, + { + "name": "DANC 8859", + "title": "Dancing the City" + }, + { + "name": "DANC 8861", + "title": "Dancing Self in Community" + }, + { + "name": "DANC 8862", + "title": "Embodied Craft" + }, + { + "name": "DANC 8865", + "title": "Dance Science & Somatics" + }, + { + "name": "DANC 8866", + "title": "The Body Politic" + }, + { + "name": "DANC 8867", + "title": "Educational Inquiry in Dance" + }, + { + "name": "DANC 8868", + "title": "Graduate Seminar" + }, + { + "name": "DANC 8869", + "title": "Dance Teaching Seminar" + }, + { + "name": "DANC 8871", + "title": "Apprenticeship in Teaching Dance" + }, + { + "name": "DANC 8872", + "title": "Educating Dance" + }, + { + "name": "DANC 8873", + "title": "Concepts of Culture" + }, + { + "name": "DANC 8874", + "title": "Foundations of Cultural Studies" + }, + { + "name": "DANC 8875", + "title": "Arts Advocacy" + }, + { + "name": "DANC 8876", + "title": "Dance as a Mode of Learning" + }, + { + "name": "DANC 8877", + "title": "Dance Administration" + }, + { + "name": "DANC 8878", + "title": "Graduate Dance Composition" + }, + { + "name": "DANC 8879", + "title": "Prof Portfolio Evaluation" + }, + { + "name": "DANC 9800", + "title": "Special Topics in Dance" + }, + { + "name": "DANC 9801", + "title": "Research Methods in Dance" + }, + { + "name": "DANC 9804", + "title": "Neoclassicism and the Baroque Revival in Twentieth-Century Dance and Culture" + }, + { + "name": "DANC 9806", + "title": "Somatic Theater" + }, + { + "name": "DANC 9831", + "title": "Moving Across Genres" + }, + { + "name": "DANC 9841", + "title": "Experience, Engagement and Multi-Sensory Inquiry" + }, + { + "name": "DANC 9851", + "title": "Black Performance" + }, + { + "name": "DANC 9852", + "title": "Dancing the Popular" + }, + { + "name": "DANC 9861", + "title": "Dance and the Gendered Body: Historical Perspectives" + }, + { + "name": "DANC 9862", + "title": "Bodies, Texts, History" + }, + { + "name": "DANC 9875", + "title": "Meaning in Dance" + }, + { + "name": "DANC 9883", + "title": "Dir Study in Dance Research" + }, + { + "name": "DANC 9889", + "title": "Dance Field Experience" + }, + { + "name": "DANC 9951", + "title": "Aesthetic and Philosophical Inquiry" + }, + { + "name": "DANC 9956", + "title": "Research Structure: Dance Ethnography" + }, + { + "name": "DANC 9984", + "title": "Master's Concert in Dance" + }, + { + "name": "DANC 9991", + "title": "Directed Research-Dance" + }, + { + "name": "DANC 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "DANC 9995", + "title": "Master's Project in Dance" + }, + { + "name": "DANC 9996", + "title": "Master's Thesis in Dance" + }, + { + "name": "DANC 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "DANC 9999", + "title": "Doctoral Dissertation" + }, + { + "name": "DANC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "DANC L000", + "title": "Elective LL" + }, + { + "name": "DANC T000", + "title": "Elective" + }, + { + "name": "DANC T003", + "title": "Dance Elective" + }, + { + "name": "DANC U000", + "title": "Elective UL" + }, + { + "name": "DSST 5401", + "title": "Disability Rights and Culture" + }, + { + "name": "DSST 5402", + "title": "Action Modes of Research" + }, + { + "name": "DSST 5403", + "title": "Disability and Social Policy" + }, + { + "name": "DSST 5404", + "title": "Health and Wellness for Persons with Disabilities" + }, + { + "name": "DSST 5405", + "title": "Disability Studies in the Humanities" + }, + { + "name": "DSST 5501", + "title": "Introduction to Disability Studies" + }, + { + "name": "DSST 9489", + "title": "Field Work in Disability Studies" + }, + { + "name": "DSST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ECED 2101", + "title": "Child Development, Birth to Nine" + }, + { + "name": "ECED 2104", + "title": "Integrating the Arts into Early Childhood Education" + }, + { + "name": "ECED 2105", + "title": "Cognition and Learning in the Classroom" + }, + { + "name": "ECED 2106", + "title": "Language and Literacy Development in Early Childhood: Birth through Kindergarten " + }, + { + "name": "ECED 2108", + "title": "Engaging Children in the Learning Process through Classroom Management " + }, + { + "name": "ECED 2187", + "title": "Practicum for Pre-K and Kindergarten" + }, + { + "name": "ECED 2251", + "title": "Effective Use of Instructional Technology in Early Childhood Classrooms" + }, + { + "name": "ECED 2321", + "title": "Curriculum Development and Implementation in Early Childhood Program" + }, + { + "name": "ECED 2322", + "title": "Family/School/Community Environments for Young Children" + }, + { + "name": "ECED 3106", + "title": "Literacy Foundations for the Primary Grades: First Grade through Fourth Grade " + }, + { + "name": "ECED 3107", + "title": "Learning Mathematics for the Primary Grades: First through Fourth Grade " + }, + { + "name": "ECED 3108", + "title": "Social Studies for the Early Years, Pre K-4 " + }, + { + "name": "ECED 3109", + "title": "Science for the Early Years " + }, + { + "name": "ECED 3187", + "title": "Practicum for the Primary Grades " + }, + { + "name": "ECED 3205", + "title": "Assessment in Early Childhood Education" + }, + { + "name": "ECED 3206", + "title": "Differentiated Reading Instruction in the Early Grades" + }, + { + "name": "ECED 3209", + "title": "Teaching English Language Learners in the Early Grades" + }, + { + "name": "ECED 3296", + "title": "Differentiated Reading Instruction in the Early Grades" + }, + { + "name": "ECED 3298", + "title": "Assessment in Early Childhood Education" + }, + { + "name": "ECED 3322", + "title": "Observing, Documenting, and Assessing Young Children's Learning" + }, + { + "name": "ECED 4101", + "title": "Integrating the Arts into Early Childhood Education" + }, + { + "name": "ECED 4102", + "title": "Children's Literature: Pre-K through Fourth Grade" + }, + { + "name": "ECED 4106", + "title": "The Learning Community: Family and Community Relationships" + }, + { + "name": "ECED 4187", + "title": "Senior Practicum in Early Childhood Education" + }, + { + "name": "ECED 4207", + "title": "Mathematics and Science Pedagogical Content Knowledge" + }, + { + "name": "ECED 4324", + "title": "Integrated Programming for Young Children" + }, + { + "name": "ECED 4588", + "title": "Student Teaching in Early Childhood Education" + }, + { + "name": "ECED 4801", + "title": "Senior Seminar and Performance Assessment in Early Childhood Education" + }, + { + "name": "ECED 4802", + "title": "Senior Seminar I in Early Childhood Education" + }, + { + "name": "ECED 4803", + "title": "Senior Seminar II in Early Childhood Education" + }, + { + "name": "ECED 5106", + "title": "Early Literacy and Language Development: Birth-Kindergarten" + }, + { + "name": "ECED 5107", + "title": "Mathematics Education for the Early Years: PreK-4" + }, + { + "name": "ECED 5108", + "title": "Social Studies Education for the Early Years: PreK-4" + }, + { + "name": "ECED 5109", + "title": "Science Education for the Early Years: PreK to 4" + }, + { + "name": "ECED 5206", + "title": "Literacy Foundations for the Primary Grades: First through Fourth" + }, + { + "name": "ECED 5370", + "title": "Sem Early Child Lit Edu" + }, + { + "name": "ECED E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ECED T000", + "title": "Elective" + }, + { + "name": "EES 0836", + "title": "Disasters: Geology vs. Hollywood" + }, + { + "name": "EES 0837", + "title": "Evolution & Extinctions" + }, + { + "name": "EES 0842", + "title": "Sustainable Environments" + }, + { + "name": "EES 0854", + "title": "Geology of the National Parks" + }, + { + "name": "EES 0873", + "title": "Evil Plots" + }, + { + "name": "EES 0874", + "title": "Environmental Life Cycle Analysis: Does Buying \"Green\" Matter?" + }, + { + "name": "EES 0954", + "title": "Honors Geology of the National Parks" + }, + { + "name": "EES 0973", + "title": "Honors Evil Plots" + }, + { + "name": "EES 1001", + "title": "Introductory Geology" + }, + { + "name": "EES 2001", + "title": "Physical Geology" + }, + { + "name": "EES 2002", + "title": "Energy and Environment" + }, + { + "name": "EES 2011", + "title": "Mineralogy I" + }, + { + "name": "EES 2012", + "title": "Mineralogy II" + }, + { + "name": "EES 2021", + "title": "Sedimentary Environments" + }, + { + "name": "EES 2022", + "title": "Paleontology and Stratigraphy" + }, + { + "name": "EES 2031", + "title": "Introduction to Field Methods in the Earth and Environmental Sciences" + }, + { + "name": "EES 2051", + "title": "Introduction to Data Visualization and Analysis for Earth and Environmental Science" + }, + { + "name": "EES 2061", + "title": "Introduction to Geochemistry" + }, + { + "name": "EES 2065", + "title": "Nanogeoscience and Technology" + }, + { + "name": "EES 2096", + "title": "Climate Change: Oceans To Atmosphere" + }, + { + "name": "EES 2097", + "title": "Process Geomorphology" + }, + { + "name": "EES 3001", + "title": "Igneous and Metamorphic Petrology" + }, + { + "name": "EES 3011", + "title": "Remote Sensing and GIS" + }, + { + "name": "EES 3015", + "title": "Drone Shortcourse" + }, + { + "name": "EES 3021", + "title": "Groundwater Hydrology" + }, + { + "name": "EES 3025", + "title": "Physical Hydrology" + }, + { + "name": "EES 3042", + "title": "Coastal Processes and Geomorphology" + }, + { + "name": "EES 3065", + "title": "Nanoscience & the Environment" + }, + { + "name": "EES 3091", + "title": "Research Methods" + }, + { + "name": "EES 4082", + "title": "Individual Study Program" + }, + { + "name": "EES 4101", + "title": "Structural Geology" + }, + { + "name": "EES 4200", + "title": "Topics in Geoscience" + }, + { + "name": "EES 4210", + "title": "Topics in Geoscience with Lab" + }, + { + "name": "EES 4589", + "title": "Field Geology" + }, + { + "name": "EES 4696", + "title": "Vertebrate Paleontology and Taphonomy" + }, + { + "name": "EES 4796", + "title": "Soils and Paleosols" + }, + { + "name": "EES 4896", + "title": "Planetary Geology" + }, + { + "name": "EES 5011", + "title": "Remote Sensing and GIS" + }, + { + "name": "EES 5042", + "title": "Coastal Processes" + }, + { + "name": "EES 5101", + "title": "Structural Geology (Graduate)" + }, + { + "name": "EES 5401", + "title": "Analytical Methods in Mineralogy" + }, + { + "name": "EES 5402", + "title": "X-ray Crystallography" + }, + { + "name": "EES 5406", + "title": "Nanoscience and the Environment" + }, + { + "name": "EES 5434", + "title": "Ecohydrology" + }, + { + "name": "EES 5454", + "title": "Introduction to Geophysics" + }, + { + "name": "EES 5461", + "title": "Low-Temperature Geochemistry" + }, + { + "name": "EES 5462", + "title": "Advanced Low-Temperature Geochemistry" + }, + { + "name": "EES 5502", + "title": "Glaciology" + }, + { + "name": "EES 5601", + "title": "Vertebrate Paleontology and Taphonomy" + }, + { + "name": "EES 5625", + "title": "Electron Optical Techniques" + }, + { + "name": "EES 5702", + "title": "Sedimentary Petrology" + }, + { + "name": "EES 5725", + "title": "Soils and Paleosols" + }, + { + "name": "EES 5801", + "title": "Quantitative Structural Geo" + }, + { + "name": "EES 5802", + "title": "Tectonics" + }, + { + "name": "EES 5811", + "title": "Planetary Geology" + }, + { + "name": "EES 8000", + "title": "Geology Seminar" + }, + { + "name": "EES 8082", + "title": "Independent Study Program" + }, + { + "name": "EES 8200", + "title": "Graduate Geology Seminar" + }, + { + "name": "EES 8411", + "title": "Advanced Hydrogeology" + }, + { + "name": "EES 8421", + "title": "Groundwater Modeling" + }, + { + "name": "EES 8701", + "title": "High Temperature Reactions" + }, + { + "name": "EES 8706", + "title": "Regional Geology" + }, + { + "name": "EES 8711", + "title": "Economics of Geo Ore Deposits" + }, + { + "name": "EES 8911", + "title": "Teaching of Geology" + }, + { + "name": "EES 9991", + "title": "Master's Research Projects" + }, + { + "name": "EES 9993", + "title": "Comprehensive Examination Prep" + }, + { + "name": "EES 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "EES 9995", + "title": "Capstone Project" + }, + { + "name": "EES 9996", + "title": "Master's Thesis Research" + }, + { + "name": "EES 9998", + "title": "Pre-Dissertation Research / Elevation to Candidacy" + }, + { + "name": "EES 9999", + "title": "Dissertation Research" + }, + { + "name": "EES E000", + "title": "Elective - needs evaluation" + }, + { + "name": "EES F000", + "title": "* See Statement Below" + }, + { + "name": "EES L000", + "title": "Elective LL" + }, + { + "name": "EES P000", + "title": "Elective P" + }, + { + "name": "EES U000", + "title": "Elective UL" + }, + { + "name": "ECON 0858", + "title": "The American Economy" + }, + { + "name": "ECON 1001", + "title": "Introduction to the Economy" + }, + { + "name": "ECON 1101", + "title": "Macroeconomic Principles" + }, + { + "name": "ECON 1102", + "title": "Microeconomic Principles" + }, + { + "name": "ECON 1103", + "title": "Global Economics Issues" + }, + { + "name": "ECON 1901", + "title": "Honors Macroeconomic Principles" + }, + { + "name": "ECON 1902", + "title": "Honors Microeconomic Principles" + }, + { + "name": "ECON 2585", + "title": "Internship" + }, + { + "name": "ECON 3408", + "title": "Economics for Life" + }, + { + "name": "ECON 3501", + "title": "Intermediate Microeconomic Analysis" + }, + { + "name": "ECON 3502", + "title": "Intermediate Macroeconomic Analysis" + }, + { + "name": "ECON 3503", + "title": "Introduction to Econometrics" + }, + { + "name": "ECON 3504", + "title": "Mathematical Economics" + }, + { + "name": "ECON 3506", + "title": "Energy, Ecology, and Economy" + }, + { + "name": "ECON 3507", + "title": "Health Economics" + }, + { + "name": "ECON 3511", + "title": "The Economics and Management of Privatization" + }, + { + "name": "ECON 3512", + "title": "Public Finance" + }, + { + "name": "ECON 3513", + "title": "Economics of State and Local Governments" + }, + { + "name": "ECON 3514", + "title": "The Economics of Education and Human Capital" + }, + { + "name": "ECON 3519", + "title": "Game Theory and Strategic Behavior" + }, + { + "name": "ECON 3522", + "title": "Economic Theory of Networks" + }, + { + "name": "ECON 3531", + "title": "History of Economic Theory" + }, + { + "name": "ECON 3532", + "title": "Economic History of the United States" + }, + { + "name": "ECON 3535", + "title": "Public Control of Business: Antitrust" + }, + { + "name": "ECON 3536", + "title": "Economics of American Industry" + }, + { + "name": "ECON 3537", + "title": "Comparative Economic Systems" + }, + { + "name": "ECON 3538", + "title": "Managerial Economics" + }, + { + "name": "ECON 3541", + "title": "The Economics of Sports" + }, + { + "name": "ECON 3543", + "title": "Law and Economics" + }, + { + "name": "ECON 3544", + "title": "Computer-Based Modeling" + }, + { + "name": "ECON 3545", + "title": "Economics of Labor Markets" + }, + { + "name": "ECON 3546", + "title": "Women in the Economy" + }, + { + "name": "ECON 3547", + "title": "Economics of Development and Growth" + }, + { + "name": "ECON 3548", + "title": "Behavioral Economics" + }, + { + "name": "ECON 3563", + "title": "International Trade" + }, + { + "name": "ECON 3564", + "title": "International Monetary Economics" + }, + { + "name": "ECON 3571", + "title": "Money and Banking" + }, + { + "name": "ECON 3572", + "title": "Owl Fund Seminar I" + }, + { + "name": "ECON 3580", + "title": "Special Topics" + }, + { + "name": "ECON 3581", + "title": "Co-op Experience in Economics" + }, + { + "name": "ECON 3582", + "title": "Independent Study" + }, + { + "name": "ECON 3596", + "title": "Energy, Ecology, and Economy" + }, + { + "name": "ECON 3597", + "title": "Health Economics" + }, + { + "name": "ECON 3598", + "title": "Economics Writing Seminar" + }, + { + "name": "ECON 3672", + "title": "Owl Fund Seminar II" + }, + { + "name": "ECON 3682", + "title": "Independent Study" + }, + { + "name": "ECON 3696", + "title": "Behavioral Economics" + }, + { + "name": "ECON 3697", + "title": "The Economics of Sports" + }, + { + "name": "ECON 3698", + "title": "Economic Inequality" + }, + { + "name": "ECON 3701", + "title": "Intermediate Microeconomic Analysis with Calculus" + }, + { + "name": "ECON 3702", + "title": "Intermediate Macroeconomic Analysis with Calculus" + }, + { + "name": "ECON 3703", + "title": "Econometric Theory" + }, + { + "name": "ECON 3900", + "title": "Honors Topics in Economics" + }, + { + "name": "ECON 3999", + "title": "Honors Thesis I" + }, + { + "name": "ECON 4021", + "title": "Economics of Risk, Uncertainty, and Information" + }, + { + "name": "ECON 4071", + "title": "Monetary Theory and Policy" + }, + { + "name": "ECON 4999", + "title": "Honors Thesis II" + }, + { + "name": "ECON 5001", + "title": "Managerial Economics" + }, + { + "name": "ECON 5102", + "title": "Economic Decisions and Public Policy" + }, + { + "name": "ECON 5182", + "title": "Independent Study" + }, + { + "name": "ECON 5190", + "title": "Special Topics in Economics" + }, + { + "name": "ECON 5501", + "title": "Survey of Internatl Econ" + }, + { + "name": "ECON 5801", + "title": "The Economic Environment" + }, + { + "name": "ECON 8001", + "title": "Microeconomic Analysis" + }, + { + "name": "ECON 8002", + "title": "Macroeconomic Analysis" + }, + { + "name": "ECON 8003", + "title": "Mathematics for Economics I" + }, + { + "name": "ECON 8005", + "title": "Microeconomic Theory I" + }, + { + "name": "ECON 8007", + "title": "Macroeconomic Theory I" + }, + { + "name": "ECON 8009", + "title": "Econometrics I" + }, + { + "name": "ECON 8104", + "title": "Labor Economics" + }, + { + "name": "ECON 8105", + "title": "Regulations and Antitrust Policy" + }, + { + "name": "ECON 8106", + "title": "Microeconomic Theory II" + }, + { + "name": "ECON 8108", + "title": "Macroeconomic Theory II" + }, + { + "name": "ECON 8109", + "title": "Theory of Economic Development" + }, + { + "name": "ECON 8114", + "title": "Advanced Labor Economics" + }, + { + "name": "ECON 8115", + "title": "Theory of Industrial Organizations" + }, + { + "name": "ECON 8116", + "title": "Mathematical Economics" + }, + { + "name": "ECON 8119", + "title": "Econometrics II" + }, + { + "name": "ECON 8121", + "title": "Development of Less Developed Economies" + }, + { + "name": "ECON 8122", + "title": "Economics of the Public Sector" + }, + { + "name": "ECON 8123", + "title": "Economics of Sports" + }, + { + "name": "ECON 8124", + "title": "International Trade: Theory and Policy" + }, + { + "name": "ECON 8125", + "title": "Theory of Public Finance" + }, + { + "name": "ECON 8129", + "title": "Time Series Econometrics" + }, + { + "name": "ECON 8134", + "title": "Intern Monetary Econ" + }, + { + "name": "ECON 8139", + "title": "Panel Data Econometrics" + }, + { + "name": "ECON 8190", + "title": "Special Topics" + }, + { + "name": "ECON 8204", + "title": "Health Economics" + }, + { + "name": "ECON 9001", + "title": "Foundations in Managerial Economics" + }, + { + "name": "ECON 9101", + "title": "Mathematics for Economists II" + }, + { + "name": "ECON 9183", + "title": "Directed Study " + }, + { + "name": "ECON 9994", + "title": "Field Examination/Dissertation Proposal Research" + }, + { + "name": "ECON 9996", + "title": "Master of Arts Thesis" + }, + { + "name": "ECON 9998", + "title": "Dissertation Proposal Research" + }, + { + "name": "ECON 9999", + "title": "Doctoral Thesis Research" + }, + { + "name": "ECON E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ECON L000", + "title": "Elective LL" + }, + { + "name": "ECON U000", + "title": "Elective UL" + }, + { + "name": "ECON U001", + "title": "Elective UL" + }, + { + "name": "EDUC 0815", + "title": "Language in Society" + }, + { + "name": "EDUC 0817", + "title": "Youth Cultures" + }, + { + "name": "EDUC 0819", + "title": "Tweens and Teens" + }, + { + "name": "EDUC 0823", + "title": "Kids in Crisis: When Schools Don't Work" + }, + { + "name": "EDUC 0915", + "title": "Honors Language in Society" + }, + { + "name": "EDUC 0917", + "title": "Honors Youth Cultures" + }, + { + "name": "EDUC 0919", + "title": "Honors Tweens and Teens" + }, + { + "name": "EDUC 1001", + "title": "Diversity and Inclusion: Reflective Paper" + }, + { + "name": "EDUC 1017", + "title": "Algebra and Algebraic Thinking for Educators" + }, + { + "name": "EDUC 1087", + "title": "Pract International Educ" + }, + { + "name": "EDUC 1176", + "title": "Ed Sch & Indiv in US Soc" + }, + { + "name": "EDUC 1196", + "title": "Education and Schooling in America" + }, + { + "name": "EDUC 1255", + "title": "Inclusive Education for a Diverse Society" + }, + { + "name": "EDUC 1322", + "title": "The Developing Individual across the Life Span" + }, + { + "name": "EDUC 2082", + "title": "Undergraduate Independent Study" + }, + { + "name": "EDUC 2087", + "title": "School-Based Community Service" + }, + { + "name": "EDUC 2103", + "title": "Socio-cultural Foundations of Education in the United States" + }, + { + "name": "EDUC 2109", + "title": "Adolescent Development for Educators " + }, + { + "name": "EDUC 2179", + "title": "Knowing and Learning in Mathematics and Science" + }, + { + "name": "EDUC 2205", + "title": "Curriculum Instruction and Technology in Education" + }, + { + "name": "EDUC 2211", + "title": "English for Foreign Students" + }, + { + "name": "EDUC 2212", + "title": "English for Academic Purposes" + }, + { + "name": "EDUC 2214", + "title": "Curriculum and Supervised Teaching K-12" + }, + { + "name": "EDUC 2224", + "title": "Service Learning" + }, + { + "name": "EDUC 2255", + "title": "Effective Use of Instructional Technology in Classrooms" + }, + { + "name": "EDUC 2272", + "title": "Instructional Practices in Middle Level Classrooms" + }, + { + "name": "EDUC 2287", + "title": "Practicum" + }, + { + "name": "EDUC 2289", + "title": "Field Experience: Managing the Contemporary Classroom" + }, + { + "name": "EDUC 2296", + "title": "Effective Teaching: Theory and Practice" + }, + { + "name": "EDUC 2306", + "title": "Assessment and Evaluation" + }, + { + "name": "EDUC 2489", + "title": "Field Experience: Special Education" + }, + { + "name": "EDUC 2900", + "title": "Honors Special Topics in Education" + }, + { + "name": "EDUC 2903", + "title": "Honors Socio-Cultural Foundations of Education in the United States" + }, + { + "name": "EDUC 3332", + "title": "Professional Seminar in Human Development and Community Engagement I" + }, + { + "name": "EDUC 3333", + "title": "Professional Seminar in Human Development and Community Engagement II" + }, + { + "name": "EDUC 3900", + "title": "Honors Special Topics in Education" + }, + { + "name": "EDUC 4038", + "title": "Assessment of Curr & Instr" + }, + { + "name": "EDUC 4091", + "title": "Capstone Project: Minor in Education" + }, + { + "name": "EDUC 4111", + "title": "Classroom and Conflict Management in Grades 4 through 12" + }, + { + "name": "EDUC 4185", + "title": "Community Internship and Seminar" + }, + { + "name": "EDUC 4187", + "title": "Practicum in Applied Development" + }, + { + "name": "EDUC 4288", + "title": "Student Teaching in Elementary/Special Education" + }, + { + "name": "EDUC 4333", + "title": "Effectiveness of Interventions for Children (Zero through 8th Grade)" + }, + { + "name": "EDUC 4388", + "title": "TUteach Apprentice Teaching" + }, + { + "name": "EDUC 4389", + "title": "Field Experience" + }, + { + "name": "EDUC 4441", + "title": "Discourse Practices in Diverse Communities" + }, + { + "name": "EDUC 4488", + "title": "Student Teaching in Elementary/Special Education/Early Childhood Education" + }, + { + "name": "EDUC 4588", + "title": "Student Teaching in Elementary Education/Early Childhood Education" + }, + { + "name": "EDUC 4688", + "title": "Student Teaching in Secondary Education" + }, + { + "name": "EDUC 4788", + "title": "Student Teaching in Secondary Education/Career Technical Education" + }, + { + "name": "EDUC 4801", + "title": "Senior Seminar and Performance Assessment" + }, + { + "name": "EDUC 4802", + "title": "TUteach Apprentice Teaching Seminar" + }, + { + "name": "EDUC 4941", + "title": "Honors Discourse Practices in Diverse Communities" + }, + { + "name": "EDUC 5010", + "title": "Special Topics in Education" + }, + { + "name": "EDUC 5011", + "title": "Entrepreneur Thking-Ed" + }, + { + "name": "EDUC 5101", + "title": "Critical Understanding of Social Science Research" + }, + { + "name": "EDUC 5115", + "title": "The Context of Education" + }, + { + "name": "EDUC 5203", + "title": "Effective Teaching: Theory and Practice" + }, + { + "name": "EDUC 5204", + "title": "Literacy N-6" + }, + { + "name": "EDUC 5205", + "title": "Numeracy N-12" + }, + { + "name": "EDUC 5207", + "title": "Early Childhood/Elementary Environments and Learning" + }, + { + "name": "EDUC 5211", + "title": "Creating a High School Learning Community" + }, + { + "name": "EDUC 5212", + "title": "Curriculum, Instruction, and Technology in Education" + }, + { + "name": "EDUC 5215", + "title": "Standards & Tchg Pract" + }, + { + "name": "EDUC 5221", + "title": "English for Foreign Students" + }, + { + "name": "EDUC 5229", + "title": "Crit Thk Val Clar & Inq" + }, + { + "name": "EDUC 5231", + "title": "Col Studies AT2 (CSAT 2)" + }, + { + "name": "EDUC 5232", + "title": "Col Studies AT3 (CSAT 3)" + }, + { + "name": "EDUC 5241", + "title": "Comp Rdg Instruction" + }, + { + "name": "EDUC 5242", + "title": "Lit for Mid Level Learnr" + }, + { + "name": "EDUC 5243", + "title": "Col Studies AT1 (CSAT1)" + }, + { + "name": "EDUC 5244", + "title": "Class Discourse" + }, + { + "name": "EDUC 5254", + "title": "Characteristics of Computer-Based Instruction" + }, + { + "name": "EDUC 5255", + "title": "Tech in Classrooms: TPCK" + }, + { + "name": "EDUC 5257", + "title": "Elem Sch Rdg Instr" + }, + { + "name": "EDUC 5258", + "title": "Second Sch Read Inst" + }, + { + "name": "EDUC 5259", + "title": "Tch Rdg & Lang to Spec" + }, + { + "name": "EDUC 5261", + "title": "Beginning Rdg Instructn" + }, + { + "name": "EDUC 5262", + "title": "Introduction to Qualitative Research" + }, + { + "name": "EDUC 5272", + "title": "Instl Pract Middle Class" + }, + { + "name": "EDUC 5275", + "title": "Seminar in Supervised Teaching" + }, + { + "name": "EDUC 5287", + "title": "Practicum in Teaching" + }, + { + "name": "EDUC 5321", + "title": "Instructional Innovation and Entrepreneurship" + }, + { + "name": "EDUC 5325", + "title": "Introduction to Statistics and Research" + }, + { + "name": "EDUC 5327", + "title": "Teacher Leadership and the Teaching Profession: A Guide for Action" + }, + { + "name": "EDUC 5401", + "title": "Intro to Middle School" + }, + { + "name": "EDUC 5402", + "title": "Child and Adol Develop" + }, + { + "name": "EDUC 5403", + "title": "Diverse Lrns in Class" + }, + { + "name": "EDUC 5406", + "title": "Teach Math Middle Gr II" + }, + { + "name": "EDUC 5407", + "title": "Teach Sci Middle Gr II" + }, + { + "name": "EDUC 5409", + "title": "Research Methods and Induction Capstone" + }, + { + "name": "EDUC 5488", + "title": "St Tchg in Middle Grade" + }, + { + "name": "EDUC 5605", + "title": "Models of Teaching" + }, + { + "name": "EDUC 5888", + "title": "Supervised Teaching" + }, + { + "name": "EDUC 8102", + "title": "Ethnographic Research Methods" + }, + { + "name": "EDUC 8103", + "title": "Contemporary Trends in Educational Research" + }, + { + "name": "EDUC 8104", + "title": "Epistemology and Method in Educational Research" + }, + { + "name": "EDUC 8232", + "title": "Technology, Teaching, and Learning" + }, + { + "name": "EDUC 8251", + "title": "Teacher Development: The Reflective Teacher" + }, + { + "name": "EDUC 8252", + "title": "Cultural Diversity and Learning Styles" + }, + { + "name": "EDUC 8253", + "title": "Accom Tchr: Nbpts Process" + }, + { + "name": "EDUC 8271", + "title": "Program Planning and Evaluation" + }, + { + "name": "EDUC 8272", + "title": "Adv Classroom Mgt" + }, + { + "name": "EDUC 8273", + "title": "Adv Coop Learning" + }, + { + "name": "EDUC 8274", + "title": "Curnt Issu/Curr & Instruc" + }, + { + "name": "EDUC 8275", + "title": "Research Design in CITE" + }, + { + "name": "EDUC 8276", + "title": "International Ed Seminar" + }, + { + "name": "EDUC 8278", + "title": "Found Theor Res Reading" + }, + { + "name": "EDUC 8279", + "title": "Found Theor Res Writing" + }, + { + "name": "EDUC 8289", + "title": "Capstone Seminar Cur Iss" + }, + { + "name": "EDUC 8401", + "title": "Philosophical Foundations of Educational Research" + }, + { + "name": "EDUC 8402", + "title": "Policy Analysis" + }, + { + "name": "EDUC 8403", + "title": "Understanding Social Science" + }, + { + "name": "EDUC 8404", + "title": "Quantitative Analysis, Part I" + }, + { + "name": "EDUC 8405", + "title": "Quantitative Analysis, Part II" + }, + { + "name": "EDUC 8501", + "title": "Motivation in Education" + }, + { + "name": "EDUC 8502", + "title": "Social Contexts of Learning" + }, + { + "name": "EDUC 8503", + "title": "Learning to Read" + }, + { + "name": "EDUC 8504", + "title": "Problem Solving and Reasoning in STEM Education" + }, + { + "name": "EDUC 8505", + "title": "Assessment and Evaluation of Students" + }, + { + "name": "EDUC 8506", + "title": "Cognition and Learning in Education" + }, + { + "name": "EDUC 8545", + "title": "Social Cntxt Math Sci Ed" + }, + { + "name": "EDUC 8727", + "title": "Foundations Math Sci Ed" + }, + { + "name": "EDUC 8730", + "title": "Res Topics Sci Ed" + }, + { + "name": "EDUC 8731", + "title": "Psych of Learning Math" + }, + { + "name": "EDUC 9255", + "title": "Res.Seminar/Math/Sci Ed" + }, + { + "name": "EDUC 9257", + "title": "Problems in Education" + }, + { + "name": "EDUC 9282", + "title": "Graduate Independent Study in Curriculum, Instruction, and Technology" + }, + { + "name": "EDUC 9287", + "title": "Practicum Corr Remed" + }, + { + "name": "EDUC 9288", + "title": "Instr. Pract: Corr/Remed" + }, + { + "name": "EDUC 9289", + "title": "Fldwork Disabilities Sty" + }, + { + "name": "EDUC 9487", + "title": "Pract: Program Supv." + }, + { + "name": "EDUC 9489", + "title": "Field Exp & Practicum" + }, + { + "name": "EDUC 9587", + "title": "Prac Intro to Diagnosis" + }, + { + "name": "EDUC 9987", + "title": "Teaching Apprenticeship" + }, + { + "name": "EDUC 9991", + "title": "Research Apprenticeship" + }, + { + "name": "EDUC 9993", + "title": "Master's Comprehensive Examination" + }, + { + "name": "EDUC 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "EDUC 9996", + "title": "Thesis Credits: Masters" + }, + { + "name": "EDUC 9998", + "title": "Dissertation Proposal Design" + }, + { + "name": "EDUC 9999", + "title": "Doctor of Education Dissertation" + }, + { + "name": "EDUC A000", + "title": "Elective" + }, + { + "name": "EDUC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "EDUC F000", + "title": "* See Statement Below" + }, + { + "name": "EDUC T000", + "title": "Elective" + }, + { + "name": "EDAD 0855", + "title": "Why care about College: Higher Education in American Life" + }, + { + "name": "EDAD 0955", + "title": "Honors Why care about College: Higher Education in American Life" + }, + { + "name": "EDAD 3027", + "title": "Research-Based Practices" + }, + { + "name": "EDAD 5027", + "title": "Research-Based Practices" + }, + { + "name": "EDAD 5063", + "title": "Educational Reform" + }, + { + "name": "EDAD 5201", + "title": "Action and Collaborative Research Seminar" + }, + { + "name": "EDAD 5300", + "title": "Intro Issues Sch Ldship" + }, + { + "name": "EDAD 5301", + "title": "Leadership for Learning" + }, + { + "name": "EDAD 5302", + "title": "Contexts for Sch Reform" + }, + { + "name": "EDAD 5303", + "title": "Ldshp in Diverse Context" + }, + { + "name": "EDAD 5304", + "title": "Sch Operations, Mgmt, Tech" + }, + { + "name": "EDAD 5305", + "title": "Knowledge Sch Improve" + }, + { + "name": "EDAD 5306", + "title": "Change Leadership" + }, + { + "name": "EDAD 5307", + "title": "Clin Exp in Sch Ldship" + }, + { + "name": "EDAD 5308", + "title": "Clinical Experiences in School Leadership 2" + }, + { + "name": "EDAD 5402", + "title": "Action and Collaborative Research Seminar" + }, + { + "name": "EDAD 5503", + "title": "The Principalship" + }, + { + "name": "EDAD 5505", + "title": "Introduction to Educational Administration and Supervision" + }, + { + "name": "EDAD 5513", + "title": "Fostering Professional Development: Coaching and Mentoring" + }, + { + "name": "EDAD 5517", + "title": "Emotions, Diversity and Democratic Leadership" + }, + { + "name": "EDAD 5531", + "title": "The School Superintendent: Chief Educator and Chief Executive I" + }, + { + "name": "EDAD 5532", + "title": "The School Superintendent: Chief Educator and Chief Executive II" + }, + { + "name": "EDAD 5552", + "title": "Issues in Higher Education" + }, + { + "name": "EDAD 5601", + "title": "The Two Year College" + }, + { + "name": "EDAD 5615", + "title": "Gender Issues in Education" + }, + { + "name": "EDAD 5641", + "title": "Finance and Business Management" + }, + { + "name": "EDAD 5651", + "title": "School Plant" + }, + { + "name": "EDAD 5652", + "title": "Educational Policy: Decision Making" + }, + { + "name": "EDAD 5653", + "title": "Educational Leadership as Civic Leadership" + }, + { + "name": "EDAD 5654", + "title": "Leadership in Higher Education" + }, + { + "name": "EDAD 5655", + "title": "Higher Education Economics and Finance" + }, + { + "name": "EDAD 5661", + "title": "Personnel Administration" + }, + { + "name": "EDAD 5671", + "title": "Public Relations" + }, + { + "name": "EDAD 5711", + "title": "Politics of Education" + }, + { + "name": "EDAD 5715", + "title": "Instructional Leadership" + }, + { + "name": "EDAD 5742", + "title": "Pro-Seminar in Ed Policy" + }, + { + "name": "EDAD 5746", + "title": "Management of School Fiscal Affairs" + }, + { + "name": "EDAD 5771", + "title": "School Law" + }, + { + "name": "EDAD 5772", + "title": "Law and the Administration of Higher Education" + }, + { + "name": "EDAD 5895", + "title": "School Violence: Risk Prevention" + }, + { + "name": "EDAD 8067", + "title": "Case Study Research Approaches" + }, + { + "name": "EDAD 8093", + "title": "Administration Research Seminar" + }, + { + "name": "EDAD 8461", + "title": "Ethical Leadership" + }, + { + "name": "EDAD 8553", + "title": "Democratic, Equitable, and Ethical Leadership" + }, + { + "name": "EDAD 8635", + "title": "Education Policy Analysis" + }, + { + "name": "EDAD 8636", + "title": "Research for Change" + }, + { + "name": "EDAD 8653", + "title": "Civic Leadership" + }, + { + "name": "EDAD 8755", + "title": "Organizational Dynamics" + }, + { + "name": "EDAD 8775", + "title": "Understanding Organizational Dynamics in Educational Settings" + }, + { + "name": "EDAD 8785", + "title": "Collective Negotiations" + }, + { + "name": "EDAD 8787", + "title": "Administration of Higher Education" + }, + { + "name": "EDAD 8905", + "title": "Advanced Seminar I" + }, + { + "name": "EDAD 8935", + "title": "Values, Ideology & Education" + }, + { + "name": "EDAD 8941", + "title": "Planning in Higher Education" + }, + { + "name": "EDAD 9189", + "title": "Field Experience" + }, + { + "name": "EDAD 9285", + "title": "Internship in Administration (Part I)" + }, + { + "name": "EDAD 9286", + "title": "Internship in Administration (Part II)" + }, + { + "name": "EDAD 9289", + "title": "Secondary Field Experience" + }, + { + "name": "EDAD 9982", + "title": "Independent Study" + }, + { + "name": "EDAD 9999", + "title": "Doctor of Education Dissertation" + }, + { + "name": "EDAD E000", + "title": "Elective - needs evaluation" + }, + { + "name": "EPSY 2325", + "title": "Statistics for Decision Making" + }, + { + "name": "EPSY 5499", + "title": "ILT: Instructional Technology and Learning" + }, + { + "name": "EPSY 5501", + "title": "ILT: Multimedia Learning" + }, + { + "name": "EPSY 5502", + "title": "ILT: Desktop Publishing and Web Design" + }, + { + "name": "EPSY 5505", + "title": "ILT: Authoring Systems" + }, + { + "name": "EPSY 5523", + "title": "Introduction to Educational Psychology" + }, + { + "name": "EPSY 5529", + "title": "Tests and Measurements" + }, + { + "name": "EPSY 5531", + "title": "Learning Theories and Education" + }, + { + "name": "EPSY 5541", + "title": "Concepts in Human Development" + }, + { + "name": "EPSY 5551", + "title": "Introduction to Program Evaluation" + }, + { + "name": "EPSY 5561", + "title": "Development and Learning Over the Lifespan" + }, + { + "name": "EPSY 8625", + "title": "Intermediate Educational Statistics" + }, + { + "name": "EPSY 8627", + "title": "Introduction to Research Design and Methods" + }, + { + "name": "EPSY 8629", + "title": "Test Construction and Validation" + }, + { + "name": "EPSY 8638", + "title": "Seminar in Instructional Theories" + }, + { + "name": "EPSY 8639", + "title": "Instructional Design and Development" + }, + { + "name": "EPSY 8735", + "title": "Proseminar in Learning" + }, + { + "name": "EPSY 8741", + "title": "Proseminar in Human Development" + }, + { + "name": "EPSY 8825", + "title": "Advanced Data Analysis" + }, + { + "name": "EPSY 8826", + "title": "Multivariate Research Methods" + }, + { + "name": "EPSY 8827", + "title": "Experimental Design" + }, + { + "name": "EPSY 8960", + "title": "Seminar Series: Problems in Educational Psychology" + }, + { + "name": "EPSY 8970", + "title": "Seminar Series: Problems in Educational Psychology" + }, + { + "name": "EPSY 8980", + "title": "Seminar Series: Problems in Educational Psychology" + }, + { + "name": "EPSY 8985", + "title": "Teaching in Higher Education" + }, + { + "name": "EPSY 8986", + "title": "Proseminar in Educational Psychology" + }, + { + "name": "EPSY 9287", + "title": "ILT: Practicum in Instructional Technology" + }, + { + "name": "EPSY 9982", + "title": "Independent Study in Educational Psychology" + }, + { + "name": "EPSY 9991", + "title": "Directed Res & Teach Pse" + }, + { + "name": "EPSY 9995", + "title": "Master's Capstone in Educational Psychology" + }, + { + "name": "EPSY 9996", + "title": "Master's Thesis in Educational Psychology" + }, + { + "name": "EPSY 9999", + "title": "Dissertation in Educational Psychology" + }, + { + "name": "EPSY E000", + "title": "Elective - needs evaluation" + }, + { + "name": "EPSY T000", + "title": "Elective" + }, + { + "name": "ECE 0822", + "title": "Investing for the Future" + }, + { + "name": "ECE 0832", + "title": "Digital World 2020" + }, + { + "name": "ECE 1012", + "title": "Introduction to Electrical Engineering" + }, + { + "name": "ECE 1014", + "title": "Evolution of Modern Electronic Systems" + }, + { + "name": "ECE 1022", + "title": "Technology and You" + }, + { + "name": "ECE 1111", + "title": "Engineering Computation I" + }, + { + "name": "ECE 1112", + "title": "Electrical Applications" + }, + { + "name": "ECE 1113", + "title": "Electrical Applications Laboratory" + }, + { + "name": "ECE 2105", + "title": "Introduction to Cyber Physical Security" + }, + { + "name": "ECE 2112", + "title": "Electrical Devices & Systems I" + }, + { + "name": "ECE 2113", + "title": "Electrical Devices & Systems I Lab" + }, + { + "name": "ECE 2122", + "title": "Electrical Devices and Systems II" + }, + { + "name": "ECE 2142", + "title": "Engineering Principles for Building Science" + }, + { + "name": "ECE 2312", + "title": "Electrical Engineering Science I" + }, + { + "name": "ECE 2313", + "title": "Electrical Engineering Science I Lab" + }, + { + "name": "ECE 2322", + "title": "Electrical Engineering Science II" + }, + { + "name": "ECE 2323", + "title": "Electrical Engineering Science II Lab" + }, + { + "name": "ECE 2332", + "title": "Principles of Electric Circuits" + }, + { + "name": "ECE 2333", + "title": "Principles of Electric Circuits Lab" + }, + { + "name": "ECE 2612", + "title": "Digital Circuit Design" + }, + { + "name": "ECE 2613", + "title": "Digital Circuit Design Laboratory" + }, + { + "name": "ECE 2922", + "title": "Honors Electrical Engineering Science II" + }, + { + "name": "ECE 2923", + "title": "Honors Electrical Engineering Science II Lab" + }, + { + "name": "ECE 3082", + "title": "Independent Study in Electrical Engineering" + }, + { + "name": "ECE 3091", + "title": "Independent Research in Electrical Engineering" + }, + { + "name": "ECE 3312", + "title": "Microelectronics I" + }, + { + "name": "ECE 3313", + "title": "Microelectronics I Laboratory" + }, + { + "name": "ECE 3412", + "title": "Classical Control Systems" + }, + { + "name": "ECE 3413", + "title": "Classical Control Laboratory" + }, + { + "name": "ECE 3432", + "title": "Robotic Control using Raspberry Pi Microcontroller" + }, + { + "name": "ECE 3512", + "title": "Signals: Continuous and Discrete" + }, + { + "name": "ECE 3522", + "title": "Stochastic Processes in Signals and Systems" + }, + { + "name": "ECE 3612", + "title": "Processor Systems" + }, + { + "name": "ECE 3613", + "title": "Processor Systems Laboratory" + }, + { + "name": "ECE 3622", + "title": "Embedded System Design" + }, + { + "name": "ECE 3623", + "title": "Embedded System Design Laboratory" + }, + { + "name": "ECE 3712", + "title": "Introduction to Electromagnetic Fields and Waves" + }, + { + "name": "ECE 3722", + "title": "Electromagnetic Wave Propagation" + }, + { + "name": "ECE 3723", + "title": "Electromagnetic Wave Propagation Laboratory" + }, + { + "name": "ECE 3732", + "title": "Electromechanical Energy Systems" + }, + { + "name": "ECE 3733", + "title": "Electromechanical Energy Systems Laboratory" + }, + { + "name": "ECE 3822", + "title": "Engineering Computation II" + }, + { + "name": "ECE 3912", + "title": "Honors Signals: Continuous and Discrete" + }, + { + "name": "ECE 3914", + "title": "Honors Microprocessor Systems" + }, + { + "name": "ECE 3915", + "title": "Honors Microprocessor Systems Lab" + }, + { + "name": "ECE 4110", + "title": "Special Topics" + }, + { + "name": "ECE 4312", + "title": "Microelectronics II" + }, + { + "name": "ECE 4322", + "title": "VLSI Systems Design" + }, + { + "name": "ECE 4412", + "title": "Modern Control Theory" + }, + { + "name": "ECE 4422", + "title": "Digital Control Systems" + }, + { + "name": "ECE 4512", + "title": "Digital Communication Systems" + }, + { + "name": "ECE 4513", + "title": "Digital Communication Systems Laboratory" + }, + { + "name": "ECE 4522", + "title": "Digital Signal Processing" + }, + { + "name": "ECE 4526", + "title": "Introduction to Computer Intrusion and Detection of Cyber Physical Security" + }, + { + "name": "ECE 4528", + "title": "Introduction to Cryptography for Cyber Physical Security" + }, + { + "name": "ECE 4532", + "title": "Data and Computer Communication" + }, + { + "name": "ECE 4542", + "title": "Telecommunications Engineering" + }, + { + "name": "ECE 4574", + "title": "Introduction to Cisco Certificate Preparation" + }, + { + "name": "ECE 4612", + "title": "Advanced Processor Systems" + }, + { + "name": "ECE 4712", + "title": "Power System Analysis" + }, + { + "name": "ECE 4722", + "title": "Power Electronics" + }, + { + "name": "ECE 5022", + "title": "Engineering Analysis and Applications" + }, + { + "name": "ECE 5033", + "title": "Probability and Random Processes" + }, + { + "name": "ECE 5110", + "title": "Special Topics in Electrical and Computer Engineering" + }, + { + "name": "ECE 5116", + "title": "Spacecraft Systems Engineering" + }, + { + "name": "ECE 5314", + "title": "Microelectronics" + }, + { + "name": "ECE 5324", + "title": "VLSI System Design and Testing" + }, + { + "name": "ECE 5344", + "title": "Fundamentals of Bio-MEMS and Biomedical Microdevices" + }, + { + "name": "ECE 5412", + "title": "Control System Analysis" + }, + { + "name": "ECE 5432", + "title": "Game Theory and Applications in Engineering" + }, + { + "name": "ECE 5512", + "title": "Intro Digital Comm" + }, + { + "name": "ECE 5514", + "title": "Digital Signal Processing Analysis" + }, + { + "name": "ECE 5516", + "title": "Introduction to Communication Networks" + }, + { + "name": "ECE 5526", + "title": "Engineering Principles of Computer Intrusion and Detection" + }, + { + "name": "ECE 5528", + "title": "Introduction to Cryptography and Information Security" + }, + { + "name": "ECE 5538", + "title": "Hardware and Industrial Control System Security" + }, + { + "name": "ECE 5541", + "title": "Hardware Security Lab" + }, + { + "name": "ECE 5548", + "title": "Secure Computer Memory Architecture and Intrusion Prevention Methodologies" + }, + { + "name": "ECE 5558", + "title": "Reverse Engineering" + }, + { + "name": "ECE 5562", + "title": "Wireless Communications Engineering" + }, + { + "name": "ECE 5564", + "title": "Cloud Computing Security" + }, + { + "name": "ECE 5566", + "title": "Forensics for Cyber Physical Systems Security" + }, + { + "name": "ECE 5568", + "title": "Engineering Project Quality and Risk Management, and ISO Standards" + }, + { + "name": "ECE 5572", + "title": "Certificate Preparation - (ISC)2/CISSP-Information Systems Security" + }, + { + "name": "ECE 5574", + "title": "Certificate Preparation - Cisco Networking Academy" + }, + { + "name": "ECE 5575", + "title": "Capstone Project" + }, + { + "name": "ECE 5600", + "title": "Graduate Seminar" + }, + { + "name": "ECE 5612", + "title": "Advanced Processor Systems" + }, + { + "name": "ECE 5622", + "title": "Introduction to Computer Architecture" + }, + { + "name": "ECE 5712", + "title": "Power Systems Engineering" + }, + { + "name": "ECE 5714", + "title": "Introduction to Intelligent Systems Engineering" + }, + { + "name": "ECE 5716", + "title": "Power System Economics" + }, + { + "name": "ECE 5722", + "title": "Power Electronic Devices and Systems" + }, + { + "name": "ECE 5732", + "title": "Electric Machines and Drives" + }, + { + "name": "ECE 5742", + "title": "Power Converter Modeling and Control" + }, + { + "name": "ECE 5826", + "title": "Information Theory" + }, + { + "name": "ECE 5999", + "title": "Research Experience in Electrical Engineering" + }, + { + "name": "ECE 8110", + "title": "Special Topics in Electrical and Computer Engineering" + }, + { + "name": "ECE 8324", + "title": "Mixed Signal VLSI Design" + }, + { + "name": "ECE 8334", + "title": "Nano Applications, MEMS & NEMS" + }, + { + "name": "ECE 8412", + "title": "Optimal and Robust Control" + }, + { + "name": "ECE 8414", + "title": "Adaptive Control" + }, + { + "name": "ECE 8512", + "title": "Signal Processing and Communication Theory" + }, + { + "name": "ECE 8514", + "title": "Applications in Digital Signal Processing" + }, + { + "name": "ECE 8516", + "title": "Design and Performance of Communication Networks" + }, + { + "name": "ECE 8524", + "title": "Speech Signal Processing" + }, + { + "name": "ECE 8525", + "title": "Fundamentals of Speech Recognition" + }, + { + "name": "ECE 8526", + "title": "Information Theory" + }, + { + "name": "ECE 8527", + "title": "Introduction to Machine Learning and Pattern Recognition" + }, + { + "name": "ECE 8528", + "title": "Advanced Topics in Statistical Modeling for Engineering Applications" + }, + { + "name": "ECE 8529", + "title": "Fundamentals of EEG Processing" + }, + { + "name": "ECE 8622", + "title": "Advanced Computer Architecture" + }, + { + "name": "ECE 8712", + "title": "Power Systems Operation and Control" + }, + { + "name": "ECE 8722", + "title": "Applications of Advanced Power Electronics Technologies" + }, + { + "name": "ECE 8742", + "title": "Power System Stability" + }, + { + "name": "ECE 9182", + "title": "Independent Study I" + }, + { + "name": "ECE 9282", + "title": "Independent Study II" + }, + { + "name": "ECE 9324", + "title": "VLSI Physical Design" + }, + { + "name": "ECE 9412", + "title": "Nonlinear Control System" + }, + { + "name": "ECE 9512", + "title": "Detection, Estimation, and Modulation Theory" + }, + { + "name": "ECE 9514", + "title": "Adaptive Signal Processing" + }, + { + "name": "ECE 9524", + "title": "Digital Image Processing" + }, + { + "name": "ECE 9622", + "title": "Parallel Processing Architectures" + }, + { + "name": "ECE 9991", + "title": "Directed Research" + }, + { + "name": "ECE 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "ECE 9995", + "title": "Project" + }, + { + "name": "ECE 9996", + "title": "Thesis" + }, + { + "name": "ECE 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "ECE 9999", + "title": "Dissertation Research" + }, + { + "name": "ECE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ECE T000", + "title": "Elective" + }, + { + "name": "ENGR 1101", + "title": "Introduction to Engineering & Engineering Technology" + }, + { + "name": "ENGR 1102", + "title": "Introduction to Engineering Problem Solving" + }, + { + "name": "ENGR 1103", + "title": "Introduction to Mathematical Modeling for Engineers" + }, + { + "name": "ENGR 1117", + "title": "Engineering Graphics" + }, + { + "name": "ENGR 1185", + "title": "Internship Experience I" + }, + { + "name": "ENGR 1901", + "title": "Honors Introduction to Engineering" + }, + { + "name": "ENGR 2011", + "title": "Engineering Analysis & Applications" + }, + { + "name": "ENGR 2181", + "title": "Co-Op Work Experience I" + }, + { + "name": "ENGR 2185", + "title": "Internship Experience II" + }, + { + "name": "ENGR 2196", + "title": "Technical Communication" + }, + { + "name": "ENGR 2331", + "title": "Engineering Statics" + }, + { + "name": "ENGR 2332", + "title": "Engineering Dynamics" + }, + { + "name": "ENGR 2333", + "title": "Mechanics of Solids" + }, + { + "name": "ENGR 2334", + "title": "Engineering Statics/Dynamics" + }, + { + "name": "ENGR 2335", + "title": "Mechanics I" + }, + { + "name": "ENGR 2336", + "title": "Mechanics II" + }, + { + "name": "ENGR 2931", + "title": "Honors Engineering Statics" + }, + { + "name": "ENGR 2933", + "title": "Honors Mechanics of Solids" + }, + { + "name": "ENGR 2996", + "title": "Honors Technical Communication by Design" + }, + { + "name": "ENGR 3001", + "title": "Engineering Economics" + }, + { + "name": "ENGR 3033", + "title": "Entrepreneurial Engineering" + }, + { + "name": "ENGR 3077", + "title": "Simulation of Linear and Nonlinear Engineering Systems" + }, + { + "name": "ENGR 3117", + "title": "Computer-Aided Design (CAD)" + }, + { + "name": "ENGR 3181", + "title": "Co-Op Work Experience II" + }, + { + "name": "ENGR 3185", + "title": "Internship Experience III" + }, + { + "name": "ENGR 3201", + "title": "Material Science for Engineers" + }, + { + "name": "ENGR 3281", + "title": "Co-op Experience I" + }, + { + "name": "ENGR 3334", + "title": "Mechanical Systems" + }, + { + "name": "ENGR 3381", + "title": "Co-op Experience II" + }, + { + "name": "ENGR 3553", + "title": "Mechanics of Fluids" + }, + { + "name": "ENGR 3571", + "title": "Classical and Statistical Thermodynamics" + }, + { + "name": "ENGR 3953", + "title": "Honors Mechanics of Fluids" + }, + { + "name": "ENGR 3982", + "title": "Honors Independent Study" + }, + { + "name": "ENGR 4040", + "title": "Special Topics" + }, + { + "name": "ENGR 4101", + "title": "Fundamentals of Engineering (FE) Examination Review" + }, + { + "name": "ENGR 4116", + "title": "Spacecraft Systems Engineering" + }, + { + "name": "ENGR 4169", + "title": "Engineering Seminar" + }, + { + "name": "ENGR 4172", + "title": "Senior Design Project I for Engineering" + }, + { + "name": "ENGR 4173", + "title": "Senior Design Project I for Environmental Engineering" + }, + { + "name": "ENGR 4174", + "title": "Senior Design Project I for Bioengineering" + }, + { + "name": "ENGR 4175", + "title": "Senior Design Project I for Civil Engineering" + }, + { + "name": "ENGR 4176", + "title": "Senior Design Project I for Electrical Engineering" + }, + { + "name": "ENGR 4177", + "title": "Senior Design Project I for Mechanical Engineering" + }, + { + "name": "ENGR 4181", + "title": "Co-Op Work Experience III" + }, + { + "name": "ENGR 4182", + "title": "Independent Study in Engineering" + }, + { + "name": "ENGR 4185", + "title": "Internship Experience IV" + }, + { + "name": "ENGR 4201", + "title": "Micro- to Nano-sized Machines" + }, + { + "name": "ENGR 4281", + "title": "Co-Op Work Experience IV" + }, + { + "name": "ENGR 4296", + "title": "Senior Design Project II" + }, + { + "name": "ENGR 4314", + "title": "Continuum Mechanics" + }, + { + "name": "ENGR 4334", + "title": "Advanced Dynamical Systems" + }, + { + "name": "ENGR 4576", + "title": "Computational Fluid Dynamics" + }, + { + "name": "ENGR 4577", + "title": "Nanotechnology Solutions for a Sustainable Urban Environment" + }, + { + "name": "ENGR 4996", + "title": "Honors Senior Design Project II" + }, + { + "name": "ENGR 5011", + "title": "Engineering Mathematics I" + }, + { + "name": "ENGR 5012", + "title": "Engineering Mathematics II" + }, + { + "name": "ENGR 5022", + "title": "Engineering Analysis and Applications" + }, + { + "name": "ENGR 5031", + "title": "Engr Prob Stats Stoc Met" + }, + { + "name": "ENGR 5032", + "title": "Probability, Statistics, and Stochastic Methods" + }, + { + "name": "ENGR 5033", + "title": "Probability and Random Processes" + }, + { + "name": "ENGR 5110", + "title": "Special Topics" + }, + { + "name": "ENGR 5116", + "title": "Spacecraft Systems Engineering" + }, + { + "name": "ENGR 5117", + "title": "Experimental Methods" + }, + { + "name": "ENGR 5314", + "title": "Continuum Mechanics" + }, + { + "name": "ENGR 5334", + "title": "Dynamical Systems" + }, + { + "name": "ENGR 5511", + "title": "Fluid Dynamics" + }, + { + "name": "ENGR 5576", + "title": "Computational Fluid Dynamics" + }, + { + "name": "ENGR 8110", + "title": "Special Topics" + }, + { + "name": "ENGR 9182", + "title": "Independent Study I" + }, + { + "name": "ENGR 9185", + "title": "Exper Engineer Prof I" + }, + { + "name": "ENGR 9282", + "title": "Independent Study II" + }, + { + "name": "ENGR 9285", + "title": "Exper Engineer Prof II" + }, + { + "name": "ENGR 9990", + "title": "Engineering Seminar" + }, + { + "name": "ENGR 9991", + "title": "Directed Research" + }, + { + "name": "ENGR 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "ENGR 9995", + "title": "Project" + }, + { + "name": "ENGR 9996", + "title": "Thesis" + }, + { + "name": "ENGR 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "ENGR 9999", + "title": "Dissertation Research" + }, + { + "name": "ENGR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENGR T000", + "title": "Elective" + }, + { + "name": "EMGT 5631", + "title": "Design Thinking" + }, + { + "name": "EMGT 5632", + "title": "Idea to Invoice: Managing the New Product Development Process" + }, + { + "name": "EMGT 5633", + "title": "Management Principles for Innovators, Engineers and Technologists" + }, + { + "name": "EMGT 5634", + "title": "Project Management Overview and Project Management Essentials" + }, + { + "name": "EMGT 5635", + "title": "Financial Management for Technologists" + }, + { + "name": "EMGT 5636", + "title": "Lean Six Sigma and the Science of Improvement" + }, + { + "name": "EMGT 5637", + "title": "Marketing Technological Products and Services" + }, + { + "name": "EMGT 5638", + "title": "Executive Engineering Leadership" + }, + { + "name": "EMGT 5639", + "title": "Advanced Financial Management for Technologists" + }, + { + "name": "EMGT 5642", + "title": "Project Management - Project Planning, Implementation and Case Study" + }, + { + "name": "EMGT 8110", + "title": "Special Topics in Engineering Management" + }, + { + "name": "EMGT 9682", + "title": "Independent Study in Engineering Management" + }, + { + "name": "EMGT 9995", + "title": "Capstone for Engineering Management" + }, + { + "name": "ENGT 2322", + "title": "Applied Strength of Materials" + }, + { + "name": "ENGT 2331", + "title": "Applied Engineering Statics" + }, + { + "name": "ENGT 2521", + "title": "Applied Fluid Mechanics" + }, + { + "name": "ENGT 3182", + "title": "Independent Study in Engineering Technology" + }, + { + "name": "ENGT 3201", + "title": "Applied Materials Technology" + }, + { + "name": "ENGT 3323", + "title": "Applied Dynamics" + }, + { + "name": "ENGT 3532", + "title": "Thermodynamics" + }, + { + "name": "ENGT 3651", + "title": "Manufacturing Control Systems" + }, + { + "name": "ENGT 3652", + "title": "CAD/CAM/CNC" + }, + { + "name": "ENGT 4040", + "title": "Special Topics" + }, + { + "name": "ENGT 4119", + "title": "Professional Seminar" + }, + { + "name": "ENGT 4129", + "title": "Professional and Industrial Seminar" + }, + { + "name": "ENGT 4196", + "title": "Capstone Project" + }, + { + "name": "ENGT 4261", + "title": "Engineering Technology Project II" + }, + { + "name": "ENGT 4278", + "title": "Cardiac Devices" + }, + { + "name": "ENGT 4342", + "title": "Machine Elements" + }, + { + "name": "ENGT 4532", + "title": "Heating, Ventilating, and Air Conditioning" + }, + { + "name": "ENGT 4641", + "title": "Production Tooling" + }, + { + "name": "ENGT 4642", + "title": "Quality Control" + }, + { + "name": "ENGT 4643", + "title": "Fundamentals of Manufacturing" + }, + { + "name": "ENGT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENGT T000", + "title": "Elective" + }, + { + "name": "ENG 0701", + "title": "Introduction to Academic Discourse" + }, + { + "name": "ENG 0711", + "title": "Introduction to Academic Discourse ESL" + }, + { + "name": "ENG 0802", + "title": "Analytical Reading and Writing" + }, + { + "name": "ENG 0812", + "title": "Analytical Reading and Writing: ESL" + }, + { + "name": "ENG 0815", + "title": "Language in Society" + }, + { + "name": "ENG 0822", + "title": "Shakespeare in the Movies" + }, + { + "name": "ENG 0824", + "title": "The Quest for Utopia" + }, + { + "name": "ENG 0826", + "title": "Creative Acts" + }, + { + "name": "ENG 0834", + "title": "Representing Race" + }, + { + "name": "ENG 0837", + "title": "Eating Cultures" + }, + { + "name": "ENG 0849", + "title": "Dissent in America" + }, + { + "name": "ENG 0855", + "title": "Why care about College: Higher Education in American Life" + }, + { + "name": "ENG 0857", + "title": "The Detective Novel" + }, + { + "name": "ENG 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "ENG 0902", + "title": "Honors Literature/Reading/Writing" + }, + { + "name": "ENG 0922", + "title": "Honors Shakespeare in the Movies" + }, + { + "name": "ENG 0924", + "title": "Honors: The Quest for Utopia" + }, + { + "name": "ENG 0926", + "title": "Honors Creative Acts" + }, + { + "name": "ENG 0934", + "title": "Honors Representing Race" + }, + { + "name": "ENG 0949", + "title": "Honors Dissent in America" + }, + { + "name": "ENG 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "ENG 0973", + "title": "Honors Women in Modern Bengali Film" + }, + { + "name": "ENG 0975", + "title": "Honors Transnational Cinema" + }, + { + "name": "ENG 1009", + "title": "Discovering English" + }, + { + "name": "ENG 1801", + "title": "Career Seminar" + }, + { + "name": "ENG 2000", + "title": "Special Topics" + }, + { + "name": "ENG 2001", + "title": "Interpreting Literature" + }, + { + "name": "ENG 2003", + "title": "Creative Writing: Poetry" + }, + { + "name": "ENG 2004", + "title": "Creative Writing: Fiction" + }, + { + "name": "ENG 2005", + "title": "Creative Writing: Plays" + }, + { + "name": "ENG 2006", + "title": "Non-Fiction Writing" + }, + { + "name": "ENG 2007", + "title": "Writing for Business and Industry" + }, + { + "name": "ENG 2008", + "title": "Technical Writing" + }, + { + "name": "ENG 2009", + "title": "Writing the Research Essay" + }, + { + "name": "ENG 2012", + "title": "Literature and Criticism" + }, + { + "name": "ENG 2013", + "title": "Intellectual Contexts of Literary Study " + }, + { + "name": "ENG 2014", + "title": "Myth and Symbol" + }, + { + "name": "ENG 2022", + "title": "Beyond the Field: Sports and Storytelling" + }, + { + "name": "ENG 2111", + "title": "The Short Story" + }, + { + "name": "ENG 2112", + "title": "Children's Literature and Folklore" + }, + { + "name": "ENG 2113", + "title": "Popular Fiction" + }, + { + "name": "ENG 2114", + "title": "Social Issues in Literature" + }, + { + "name": "ENG 2115", + "title": "Young Adult Literature" + }, + { + "name": "ENG 2116", + "title": "Disability and Literature" + }, + { + "name": "ENG 2160", + "title": "Topics in Women's Literature" + }, + { + "name": "ENG 2201", + "title": "Survey of English Literature: Beginnings to 1660" + }, + { + "name": "ENG 2202", + "title": "Survey of English Literature: 1660-1900" + }, + { + "name": "ENG 2206", + "title": "The City in Literature" + }, + { + "name": "ENG 2211", + "title": "Arthurian Literature" + }, + { + "name": "ENG 2221", + "title": "Shakespeare" + }, + { + "name": "ENG 2301", + "title": "Survey of American Literature I" + }, + { + "name": "ENG 2302", + "title": "Survey of American Literature II" + }, + { + "name": "ENG 2341", + "title": "American Playwrights" + }, + { + "name": "ENG 2401", + "title": "African-American Literature I" + }, + { + "name": "ENG 2402", + "title": "African-American Literature II" + }, + { + "name": "ENG 2501", + "title": "Introduction to British Writing" + }, + { + "name": "ENG 2502", + "title": "Introduction to American Writing" + }, + { + "name": "ENG 2503", + "title": "Introduction to Global Writing" + }, + { + "name": "ENG 2511", + "title": "Modern Poetry" + }, + { + "name": "ENG 2512", + "title": "The Modern Novel" + }, + { + "name": "ENG 2513", + "title": "Modern Drama" + }, + { + "name": "ENG 2521", + "title": "Contemporary Literature" + }, + { + "name": "ENG 2601", + "title": "Introduction to Postcolonial Literatures" + }, + { + "name": "ENG 2696", + "title": "Technical Writing " + }, + { + "name": "ENG 2702", + "title": "Film History I: 1890-1945" + }, + { + "name": "ENG 2703", + "title": "Film History II: 1946-Present" + }, + { + "name": "ENG 2710", + "title": "Special Topics in Film Studies I" + }, + { + "name": "ENG 2711", + "title": "Introduction to Film Studies" + }, + { + "name": "ENG 2712", + "title": "International Film" + }, + { + "name": "ENG 2713", + "title": "Art of the Film" + }, + { + "name": "ENG 2714", + "title": "Writing for the Arts" + }, + { + "name": "ENG 2720", + "title": "Special Topics in Film Studies II" + }, + { + "name": "ENG 2821", + "title": "Introduction to Linguistics" + }, + { + "name": "ENG 2822", + "title": "Language and Race" + }, + { + "name": "ENG 2831", + "title": "Literacy and Society" + }, + { + "name": "ENG 2832", + "title": "Science Writing" + }, + { + "name": "ENG 2833", + "title": "Medical Writing" + }, + { + "name": "ENG 2900", + "title": "Honors Special Topics" + }, + { + "name": "ENG 2901", + "title": "Intermediate Honors: Developing Advanced Literacy in College" + }, + { + "name": "ENG 2903", + "title": "Honors Creative Writing: Plays" + }, + { + "name": "ENG 3001", + "title": "History of Criticism" + }, + { + "name": "ENG 3002", + "title": "Contemporary Criticism" + }, + { + "name": "ENG 3003", + "title": "Advanced Creative Writing: Poetry" + }, + { + "name": "ENG 3004", + "title": "Advanced Creative Writing: Fiction" + }, + { + "name": "ENG 3005", + "title": "Advanced Creative Writing: Plays" + }, + { + "name": "ENG 3009", + "title": "Building Electronic Portfolios" + }, + { + "name": "ENG 3010", + "title": "Special Topics I" + }, + { + "name": "ENG 3020", + "title": "Special Topics II" + }, + { + "name": "ENG 3082", + "title": "Independent Study" + }, + { + "name": "ENG 3085", + "title": "Career Internship" + }, + { + "name": "ENG 3096", + "title": "Texts and Criticism" + }, + { + "name": "ENG 3097", + "title": "Feminist Theory" + }, + { + "name": "ENG 3101", + "title": "Themes and Genres in Women's Literature" + }, + { + "name": "ENG 3111", + "title": "Italian Renaissance" + }, + { + "name": "ENG 3112", + "title": "Masterpieces of European Drama" + }, + { + "name": "ENG 3211", + "title": "Old English" + }, + { + "name": "ENG 3212", + "title": "Literature of the Medieval Period" + }, + { + "name": "ENG 3213", + "title": "Chaucer" + }, + { + "name": "ENG 3221", + "title": "Advanced Shakespeare I" + }, + { + "name": "ENG 3222", + "title": "Advanced Shakespeare II" + }, + { + "name": "ENG 3223", + "title": "Elizabethan and Jacobean Drama" + }, + { + "name": "ENG 3224", + "title": "Renaissance Writers" + }, + { + "name": "ENG 3225", + "title": "Milton" + }, + { + "name": "ENG 3231", + "title": "Restoration and 18th Century Literature" + }, + { + "name": "ENG 3232", + "title": "English Novel to 1832" + }, + { + "name": "ENG 3241", + "title": "English Romanticism" + }, + { + "name": "ENG 3251", + "title": "Victorian Literature" + }, + { + "name": "ENG 3252", + "title": "Victorian Novel" + }, + { + "name": "ENG 3261", + "title": "Modern British Fiction" + }, + { + "name": "ENG 3262", + "title": "Irish Literature" + }, + { + "name": "ENG 3321", + "title": "American Romanticism" + }, + { + "name": "ENG 3322", + "title": "American Realism and Naturalism" + }, + { + "name": "ENG 3323", + "title": "19th Century American Fiction" + }, + { + "name": "ENG 3331", + "title": "Modern American Fiction" + }, + { + "name": "ENG 3332", + "title": "Contemporary American Fiction" + }, + { + "name": "ENG 3341", + "title": "American Literature and Society" + }, + { + "name": "ENG 3401", + "title": "Intermediate Writing: Non-Fiction" + }, + { + "name": "ENG 3411", + "title": "Studies in African-American Literary Genre" + }, + { + "name": "ENG 3412", + "title": "The Harlem Renaissance" + }, + { + "name": "ENG 3413", + "title": "African-American Literary Criticism" + }, + { + "name": "ENG 3414", + "title": "Blacks/Literature/Drama/Media" + }, + { + "name": "ENG 3511", + "title": "Modern British and American Poetry" + }, + { + "name": "ENG 3512", + "title": "Issues in Modern Literature" + }, + { + "name": "ENG 3513", + "title": "Modern World Fiction" + }, + { + "name": "ENG 3521", + "title": "Contemporary Poetry" + }, + { + "name": "ENG 3522", + "title": "Contemporary World Fiction in English" + }, + { + "name": "ENG 3523", + "title": "Contemporary Drama" + }, + { + "name": "ENG 3524", + "title": "Advanced Contemporary Literature" + }, + { + "name": "ENG 3610", + "title": "Topics in Postcolonial Literature" + }, + { + "name": "ENG 3611", + "title": "Postcolonial Theory" + }, + { + "name": "ENG 3710", + "title": "Special Topics in Film" + }, + { + "name": "ENG 3711", + "title": "Intermediate Film" + }, + { + "name": "ENG 3810", + "title": "Topics in Professional Writing, Editing, and Publishing" + }, + { + "name": "ENG 3811", + "title": "Theories of Language and Literacy" + }, + { + "name": "ENG 3812", + "title": "Language Variation: Research in Language and Literacy" + }, + { + "name": "ENG 3813", + "title": "Writers at Work" + }, + { + "name": "ENG 3814", + "title": "Topics in Professional Writing" + }, + { + "name": "ENG 3821", + "title": "Linguistics and Grammar" + }, + { + "name": "ENG 3822", + "title": "Semantics" + }, + { + "name": "ENG 3823", + "title": "History of the English Language" + }, + { + "name": "ENG 3900", + "title": "Honors Special Topics I" + }, + { + "name": "ENG 4096", + "title": "Studies in Creative Writing" + }, + { + "name": "ENG 4097", + "title": "Studies in Criticism" + }, + { + "name": "ENG 4098", + "title": "Studies in Modern British Literature" + }, + { + "name": "ENG 4196", + "title": "Studies in Language and Literacy" + }, + { + "name": "ENG 4197", + "title": "Studies in Poetry" + }, + { + "name": "ENG 4198", + "title": "Studies in Irish Literature" + }, + { + "name": "ENG 4297", + "title": "Studies in Drama" + }, + { + "name": "ENG 4298", + "title": "Studies in Early American Literature" + }, + { + "name": "ENG 4397", + "title": "Studies in Medieval Language and Literature" + }, + { + "name": "ENG 4398", + "title": "Studies in 19th Century American Literature" + }, + { + "name": "ENG 4497", + "title": "Studies in Shakespeare" + }, + { + "name": "ENG 4498", + "title": "Studies in Modern American Literature" + }, + { + "name": "ENG 4597", + "title": "Studies in Renaissance Literature" + }, + { + "name": "ENG 4598", + "title": "Studies in African-American Literature" + }, + { + "name": "ENG 4697", + "title": "Studies in Restoration and 18th Century Literature" + }, + { + "name": "ENG 4698", + "title": "Studies in World Literature" + }, + { + "name": "ENG 4797", + "title": "Studies in Romanticism" + }, + { + "name": "ENG 4798", + "title": "Advanced Topics in Postcolonial Studies" + }, + { + "name": "ENG 4897", + "title": "Studies in the Victorian Age" + }, + { + "name": "ENG 4898", + "title": "Studies in Film" + }, + { + "name": "ENG 5001", + "title": "Introduction to Graduate Study in English" + }, + { + "name": "ENG 5011", + "title": "Early British Literature" + }, + { + "name": "ENG 5012", + "title": "Early American Literature" + }, + { + "name": "ENG 5014", + "title": "16th and 17th Century British Literature" + }, + { + "name": "ENG 5016", + "title": "18th Century British Literature" + }, + { + "name": "ENG 5018", + "title": "19th Century British Literature" + }, + { + "name": "ENG 5021", + "title": "19th Century American Literature" + }, + { + "name": "ENG 5022", + "title": "20th and 21st Century British Literature" + }, + { + "name": "ENG 5024", + "title": "20th and 21st Century American Literature" + }, + { + "name": "ENG 5026", + "title": "Anglophone Literatures" + }, + { + "name": "ENG 5028", + "title": "Literatures in Translation" + }, + { + "name": "ENG 5031", + "title": "Translation Study" + }, + { + "name": "ENG 5032", + "title": "Book History" + }, + { + "name": "ENG 5100", + "title": "Topics - Literary Genres" + }, + { + "name": "ENG 5200", + "title": "Topics - Literature and Culture" + }, + { + "name": "ENG 5300", + "title": "Topics - Cinema and Media Arts" + }, + { + "name": "ENG 5301", + "title": "Methods in Cinema and Media Studies" + }, + { + "name": "ENG 5401", + "title": "Introduction to Digital Text Methods" + }, + { + "name": "ENG 5500", + "title": "Topics - Critical Theory" + }, + { + "name": "ENG 5501", + "title": "History of Critical Theory" + }, + { + "name": "ENG 5502", + "title": "Current Directions in Critical Theory" + }, + { + "name": "ENG 5600", + "title": "Special Topics in Creative Writing" + }, + { + "name": "ENG 5601", + "title": "Poetry Workshop" + }, + { + "name": "ENG 5602", + "title": "Fiction Workshop" + }, + { + "name": "ENG 5603", + "title": "Craft in Creative Writing" + }, + { + "name": "ENG 5701", + "title": "Composition Research Methods" + }, + { + "name": "ENG 5702", + "title": "Historical Studies in Language and Rhetoric" + }, + { + "name": "ENG 5710", + "title": "Topics - Literacy and Language" + }, + { + "name": "ENG 5720", + "title": "Topics - Rhetoric and Composition" + }, + { + "name": "ENG 8101", + "title": "Advanced Study - Early English Literature" + }, + { + "name": "ENG 8102", + "title": "Advanced Study - Early American Literature" + }, + { + "name": "ENG 8104", + "title": "Advanced Study - 16th and 17th Century British Literature" + }, + { + "name": "ENG 8106", + "title": "Advanced Study - 18th Century British Literature" + }, + { + "name": "ENG 8108", + "title": "Advanced Study - 19th Century British Literature" + }, + { + "name": "ENG 8109", + "title": "Advanced Study - 19th Century American Literature" + }, + { + "name": "ENG 8202", + "title": "Advanced Study - 20th and 21st Century British Literature" + }, + { + "name": "ENG 8204", + "title": "Advanced Study - 20th and 21st Century American Literature" + }, + { + "name": "ENG 8205", + "title": "Advanced Study - Anglophone Literature" + }, + { + "name": "ENG 8301", + "title": "Advanced Study in Translation" + }, + { + "name": "ENG 8302", + "title": "Advanced Study in Book History" + }, + { + "name": "ENG 8304", + "title": "Advanced Study in Genre" + }, + { + "name": "ENG 8402", + "title": "Advanced Study in Cinema and Media" + }, + { + "name": "ENG 8501", + "title": "Advanced Study in Critical Theory" + }, + { + "name": "ENG 8704", + "title": "Advanced Study in Literacy and Language" + }, + { + "name": "ENG 8706", + "title": "Advanced Study in Rhetoric and Composition" + }, + { + "name": "ENG 8900", + "title": "Advanced Study in Literature and Culture" + }, + { + "name": "ENG 8904", + "title": "TU/Penn Exchange Poetics" + }, + { + "name": "ENG 8985", + "title": "Teaching in Higher Education: Writing" + }, + { + "name": "ENG 9082", + "title": "Independent Study" + }, + { + "name": "ENG 9083", + "title": "Master's Manuscript Tutorial" + }, + { + "name": "ENG 9089", + "title": "Rome Seminar in Art and Culture" + }, + { + "name": "ENG 9100", + "title": "Seminar in Literary and Cultural Studies" + }, + { + "name": "ENG 9200", + "title": "Seminar in Cinema and Media Studies" + }, + { + "name": "ENG 9300", + "title": "Seminar in Critical Theory" + }, + { + "name": "ENG 9400", + "title": "Seminar in Rhetoric and Composition" + }, + { + "name": "ENG 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "ENG 9995", + "title": "Master's Project" + }, + { + "name": "ENG 9996", + "title": "Master's Essay" + }, + { + "name": "ENG 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "ENG 9999", + "title": "Dissertation Research" + }, + { + "name": "ENG E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENG F000", + "title": "* See Statement Below" + }, + { + "name": "ENG L000", + "title": "Elective LL" + }, + { + "name": "ENG L001", + "title": "Elective" + }, + { + "name": "ENG P000", + "title": "Elective P" + }, + { + "name": "ENG U000", + "title": "Elective UL" + }, + { + "name": "ENG U001", + "title": "Elective UL" + }, + { + "name": "ENES 3338", + "title": "Foundations of Language Teaching: Teaching English Language Learners in Grades 4 to 12" + }, + { + "name": "ENES 4366", + "title": "Teaching Literature and Reading 7-12" + }, + { + "name": "ENES 4371", + "title": "Teaching Oral and Written Communication: 7-12" + }, + { + "name": "ENES 5641", + "title": "Tchg Composition Sec Sch" + }, + { + "name": "ENES 5642", + "title": "Tchg Literature Sec Sch" + }, + { + "name": "ENES 8623", + "title": "Applied Ling for Eng Tch" + }, + { + "name": "ENES 8624", + "title": "Tch New Grammars-Sec Sch" + }, + { + "name": "ENES 8641", + "title": "Sem in Tchg Reading N-12" + }, + { + "name": "ENES 8642", + "title": "Tchg Appl of Sound Syst" + }, + { + "name": "ENES 8645", + "title": "Sem English Language Ed" + }, + { + "name": "ENES 8652", + "title": "Tchg Eng to Other Lang 1" + }, + { + "name": "ENES 8653", + "title": "Tch Eng Spk Other Lang" + }, + { + "name": "ENES 8654", + "title": "Issues in Eng Ed-S" + }, + { + "name": "ENES 8655", + "title": "Seminar in Cur Pedagogy" + }, + { + "name": "ENES 8656", + "title": "Sem in Class Research" + }, + { + "name": "ENES 8657", + "title": "Seminar in Res & Tchg" + }, + { + "name": "ENES 8734", + "title": "Discourse Analysis Tchrs" + }, + { + "name": "ENES 8736", + "title": "Theory Sec Lang Learn" + }, + { + "name": "ENES 8742", + "title": "Contexts/Literacy Dev" + }, + { + "name": "ENES 8744", + "title": "Current Issues Lang Educ" + }, + { + "name": "ENES 9782", + "title": "Special Projects Eng Ed" + }, + { + "name": "ENES 9882", + "title": "Grad Ind Study Eng Ed-S" + }, + { + "name": "ENES 9887", + "title": "Seminar Pract in Commun" + }, + { + "name": "ENES 9987", + "title": "Seminar Pract in Commun" + }, + { + "name": "ENES E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENVT 0845", + "title": "The Environment" + }, + { + "name": "ENVT 0945", + "title": "Honors: The Environment" + }, + { + "name": "ENVT 1051", + "title": "Introduction to the Environment" + }, + { + "name": "ENVT 1117", + "title": "Sanitary Chemistry and Microbiology" + }, + { + "name": "ENVT 2124", + "title": "Environmental Instrumentation" + }, + { + "name": "ENVT 2133", + "title": "Environmental Field Operations" + }, + { + "name": "ENVT 4711", + "title": "Air Pollution Control Systems" + }, + { + "name": "ENVT 4721", + "title": "Water and Wastewater" + }, + { + "name": "ENVT 4731", + "title": "Hazardous Waste Management" + }, + { + "name": "ENVT 4741", + "title": "Environmental Modeling" + }, + { + "name": "ENVT 4761", + "title": "Environmental Regulations " + }, + { + "name": "ENVT 4796", + "title": "Pollution Control Processes" + }, + { + "name": "ENVT 4982", + "title": "Honors Independent Study in Environmental Engineering Technology" + }, + { + "name": "ENVT 4983", + "title": "Honors Directed Study in Environmental Engineering Technology" + }, + { + "name": "ENVT 4991", + "title": "Honors Independent Research in Environmental Engineering Technology" + }, + { + "name": "ENVT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENVT T000", + "title": "Elective" + }, + { + "name": "ENVH 1103", + "title": "International Health" + }, + { + "name": "ENVH 1903", + "title": "Honors International Health" + }, + { + "name": "ENVH 2102", + "title": "Environmental Health" + }, + { + "name": "ENVH 5004", + "title": "Environmental Health" + }, + { + "name": "ENVH 5013", + "title": "Global Environmental Health" + }, + { + "name": "ENVH 5103", + "title": "Environmental Health" + }, + { + "name": "ENVH 5202", + "title": "Man-Made Disasters: Radiological, Chemical & Biological Terrorism " + }, + { + "name": "ENVH 5301", + "title": "Industrial Hygiene and Safety" + }, + { + "name": "ENVH 5305", + "title": "Environmental Toxicology" + }, + { + "name": "ENVH 5306", + "title": "Analytical Instrumentation" + }, + { + "name": "ENVH 5307", + "title": "HVAC in Environmental Health" + }, + { + "name": "ENVH 5308", + "title": "Emergent Environmental Diseases" + }, + { + "name": "ENVH 5401", + "title": "Curriculum Construction in Health Education" + }, + { + "name": "ENVH 8016", + "title": "Human Health Risk Analysis" + }, + { + "name": "ENVH 8019", + "title": "Environmental Policy and Regulation" + }, + { + "name": "ENVH 8207", + "title": "Environmental Epidemiology" + }, + { + "name": "ENVH 8309", + "title": "Exposure Assessment" + }, + { + "name": "ENVH 9189", + "title": "MPH Capstone Seminar" + }, + { + "name": "ENVH 9289", + "title": "MPH Fieldwork I" + }, + { + "name": "ENVH 9389", + "title": "MPH Fieldwork II" + }, + { + "name": "ENVH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENVS 3000", + "title": "Special Topics in Environmental Science" + }, + { + "name": "ENVS 3027", + "title": "HAZWOPER Training and the Regulatory Environment" + }, + { + "name": "ENVS 4082", + "title": "Independent Study: Environmental Science" + }, + { + "name": "ENVS 4085", + "title": "Internship: Environmental Science" + }, + { + "name": "ENVS 4198", + "title": "Environmental Science Senior Seminar" + }, + { + "name": "ENVS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENST 0842", + "title": "Sustainable Environments" + }, + { + "name": "ENST 0942", + "title": "Honors Sustainable Environments" + }, + { + "name": "ENST 2001", + "title": "Environment and Society" + }, + { + "name": "ENST 2002", + "title": "Physical Geography" + }, + { + "name": "ENST 2017", + "title": "Population Geography" + }, + { + "name": "ENST 2025", + "title": "Environmental Law and Regulation" + }, + { + "name": "ENST 2051", + "title": "The Urban Environment" + }, + { + "name": "ENST 2096", + "title": "Problems of Environmental Quality" + }, + { + "name": "ENST 2097", + "title": "Research Design in Environmental Studies" + }, + { + "name": "ENST 2157", + "title": "Environmental Ethics" + }, + { + "name": "ENST 2596", + "title": "Philosophical Perspectives on the Environment" + }, + { + "name": "ENST 2957", + "title": "Honors Environmental Ethics" + }, + { + "name": "ENST 3000", + "title": "Special Topics in Environmental Studies" + }, + { + "name": "ENST 3001", + "title": "Earth Ethics" + }, + { + "name": "ENST 3004", + "title": "Geography of Natural Resources" + }, + { + "name": "ENST 3015", + "title": "The Geographic Basis of Land Use Planning" + }, + { + "name": "ENST 3051", + "title": "Environmental Policy Issues" + }, + { + "name": "ENST 3052", + "title": "Environmental Problems in Asia" + }, + { + "name": "ENST 3053", + "title": "Climatology" + }, + { + "name": "ENST 3054", + "title": "Energy, Resources, and Conservation" + }, + { + "name": "ENST 3055", + "title": "Geography of Hazards" + }, + { + "name": "ENST 3056", + "title": "Political Ecology" + }, + { + "name": "ENST 3057", + "title": "Sustainable Cities" + }, + { + "name": "ENST 3061", + "title": "Fundamentals of Cartography" + }, + { + "name": "ENST 3062", + "title": "Fundamentals of Geographic Information Systems" + }, + { + "name": "ENST 3063", + "title": "Environmental Remote Sensing" + }, + { + "name": "ENST 3064", + "title": "Qualitative Methods" + }, + { + "name": "ENST 3065", + "title": "Census Analysis with GIS" + }, + { + "name": "ENST 3068", + "title": "Environmental Impact Assessment" + }, + { + "name": "ENST 3069", + "title": "GIS for Health Data Analysis" + }, + { + "name": "ENST 3071", + "title": "Medical Geography" + }, + { + "name": "ENST 3085", + "title": "Internship in Environmental Studies" + }, + { + "name": "ENST 3097", + "title": "Environment and Development" + }, + { + "name": "ENST 3152", + "title": "U.S. Environmental Policy" + }, + { + "name": "ENST 3161", + "title": "Spatial Statistics" + }, + { + "name": "ENST 3170", + "title": "Methods in Archaeology" + }, + { + "name": "ENST 3175", + "title": "Heritage Management in Archaeology" + }, + { + "name": "ENST 3189", + "title": "Field Session in Archaeology" + }, + { + "name": "ENST 3214", + "title": "North American Environmental History" + }, + { + "name": "ENST 3265", + "title": "International Environmental Policy" + }, + { + "name": "ENST 3307", + "title": "Transportation and Culture" + }, + { + "name": "ENST 3314", + "title": "Food Studies: A Geographical Perspective" + }, + { + "name": "ENST 3511", + "title": "Sociology of the Environment" + }, + { + "name": "ENST 3596", + "title": "Energy, Ecology, and Economy" + }, + { + "name": "ENST 3900", + "title": "Honors Special Topics" + }, + { + "name": "ENST 3904", + "title": "Honors Earth Ethics" + }, + { + "name": "ENST 4000", + "title": "Special Topics in Environmental Studies" + }, + { + "name": "ENST 4017", + "title": "Health and Environment Seminar" + }, + { + "name": "ENST 4061", + "title": "Cartographic Production" + }, + { + "name": "ENST 4064", + "title": "Web Mapping and GIS" + }, + { + "name": "ENST 4065", + "title": "Urban Geographic Information Systems" + }, + { + "name": "ENST 4066", + "title": "Environmental GIS" + }, + { + "name": "ENST 4068", + "title": "Census Analysis with GIS" + }, + { + "name": "ENST 4072", + "title": "Advanced Remote Sensing" + }, + { + "name": "ENST 4073", + "title": "Geovisualization" + }, + { + "name": "ENST 4082", + "title": "Independent Study: Environmental Studies" + }, + { + "name": "ENST 4117", + "title": "Seminar in Environmental Archaeology" + }, + { + "name": "ENST 4198", + "title": "Senior Research Seminar" + }, + { + "name": "ENST 4297", + "title": "Social History of American Medicine" + }, + { + "name": "ENST 4796", + "title": "Biocultural Adaptations in Human Populations" + }, + { + "name": "ENST 4896", + "title": "Environmental Physiology" + }, + { + "name": "ENST 4917", + "title": "Honors Health and Environment Seminar" + }, + { + "name": "ENST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ENST L000", + "title": "Elective LL" + }, + { + "name": "ENST U000", + "title": "Elective UL" + }, + { + "name": "EPBI 2219", + "title": "Biostatistics and Public Health" + }, + { + "name": "EPBI 2301", + "title": "Public Health without Borders" + }, + { + "name": "EPBI 3101", + "title": "Introduction to Epidemiology" + }, + { + "name": "EPBI 3102", + "title": "Introduction to Research Methods" + }, + { + "name": "EPBI 3382", + "title": "Independent Study in Public Health" + }, + { + "name": "EPBI 5002", + "title": "Biostatistics" + }, + { + "name": "EPBI 5003", + "title": "Spatial Analysis in Public Health" + }, + { + "name": "EPBI 5005", + "title": "Applied Analysis of Health" + }, + { + "name": "EPBI 5101", + "title": "Fundamentals of Epidemiology" + }, + { + "name": "EPBI 5201", + "title": "Epidemiological Research Methods I" + }, + { + "name": "EPBI 5204", + "title": "Mental Health Epidemiology" + }, + { + "name": "EPBI 5500", + "title": "Seminar in Current Issues in Public Health" + }, + { + "name": "EPBI 8001", + "title": "Research Methods in Public Health" + }, + { + "name": "EPBI 8002", + "title": "Research Seminar in Public Health" + }, + { + "name": "EPBI 8011", + "title": "Social Epidemiology" + }, + { + "name": "EPBI 8012", + "title": "Multivariable Biostatistics" + }, + { + "name": "EPBI 8201", + "title": "Structural Equation Modeling" + }, + { + "name": "EPBI 8202", + "title": "Epidemiological Research Methods II" + }, + { + "name": "EPBI 8203", + "title": "Public Health Data Reporting" + }, + { + "name": "EPBI 8204", + "title": "Multilev Mod in Int Res" + }, + { + "name": "EPBI 8205", + "title": "Chronic Disease Epidemiology" + }, + { + "name": "EPBI 8206", + "title": "Infectious Disease Epidemiology" + }, + { + "name": "EPBI 8208", + "title": "Data Management and Analysis" + }, + { + "name": "EPBI 8209", + "title": "Epidemiology of HIV/AIDS" + }, + { + "name": "EPBI 8211", + "title": "Epidemiology Grand Rounds" + }, + { + "name": "EPBI 8212", + "title": "Grantsmanship in Health Research" + }, + { + "name": "EPBI 8301", + "title": "Clinical Research Methods in Public Health" + }, + { + "name": "EPBI 8302", + "title": "Behavioral Measurement" + }, + { + "name": "EPBI 8307", + "title": "Systematic Reviews" + }, + { + "name": "EPBI 9083", + "title": "Readings and Conference in Public Health" + }, + { + "name": "EPBI 9187", + "title": "Biostat Cnslt Practicum" + }, + { + "name": "EPBI 9189", + "title": "MPH Capstone Seminar" + }, + { + "name": "EPBI 9289", + "title": "MPH Fieldwork I" + }, + { + "name": "EPBI 9389", + "title": "MPH Fieldwork II" + }, + { + "name": "EPBI 9991", + "title": "Public Health Research Project" + }, + { + "name": "EPBI 9994", + "title": "Preliminary Examinations" + }, + { + "name": "EPBI 9996", + "title": "Masters Res in Pub Hlth" + }, + { + "name": "EPBI 9998", + "title": "Dissertation Proposal Research" + }, + { + "name": "EPBI 9999", + "title": "Dissertation Research" + }, + { + "name": "EPBI E000", + "title": "Elective - needs evaluation" + }, + { + "name": "FMA 0843", + "title": "Race & Ethnicity in American Cinema" + }, + { + "name": "FMA 0869", + "title": "Imaginary Cities" + }, + { + "name": "FMA 0943", + "title": "Honors Race & Ethnicity in American Cinema" + }, + { + "name": "FMA 0969", + "title": "Honors Imaginary Cities" + }, + { + "name": "FMA 1141", + "title": "Media Arts I" + }, + { + "name": "FMA 1142", + "title": "Media Arts II" + }, + { + "name": "FMA 1143", + "title": "Media Arts Combined" + }, + { + "name": "FMA 1144", + "title": "Media Arts for Non-Production Majors" + }, + { + "name": "FMA 1171", + "title": "Media & Culture" + }, + { + "name": "FMA 1172", + "title": "Introduction to Film and Video Analysis" + }, + { + "name": "FMA 1451", + "title": "Survey of New Media" + }, + { + "name": "FMA 2171", + "title": "Navigating the Freelance World" + }, + { + "name": "FMA 2241", + "title": "Filmmaking" + }, + { + "name": "FMA 2242", + "title": "Videography" + }, + { + "name": "FMA 2243", + "title": "Audio: Production and Aesthetics" + }, + { + "name": "FMA 2244", + "title": "Still Photography for Filmmakers" + }, + { + "name": "FMA 2245", + "title": "Video Production for Non-Production Majors" + }, + { + "name": "FMA 2396", + "title": "Screenwriting I" + }, + { + "name": "FMA 2451", + "title": "Experimental Video and Multi-Media" + }, + { + "name": "FMA 2452", + "title": "Web Art & Design" + }, + { + "name": "FMA 2471", + "title": "New Media Colloquium" + }, + { + "name": "FMA 2551", + "title": "Editing Film and Video" + }, + { + "name": "FMA 2670", + "title": "Topics in Film Study" + }, + { + "name": "FMA 2671", + "title": "Film Noir" + }, + { + "name": "FMA 2672", + "title": "Film Comedy" + }, + { + "name": "FMA 2673", + "title": "Independent Film/Video" + }, + { + "name": "FMA 2674", + "title": "History of Photography" + }, + { + "name": "FMA 2675", + "title": "Film History I (1895-1950)" + }, + { + "name": "FMA 2676", + "title": "Film History II (1950-Present)" + }, + { + "name": "FMA 2678", + "title": "History of Experimental Film and Video Art" + }, + { + "name": "FMA 2771", + "title": "Producing" + }, + { + "name": "FMA 3085", + "title": "Internship" + }, + { + "name": "FMA 3241", + "title": "BFA Junior Directing Projects" + }, + { + "name": "FMA 3242", + "title": "Experimental Media Workshop" + }, + { + "name": "FMA 3244", + "title": "Lighting for Film and Video" + }, + { + "name": "FMA 3245", + "title": "Cinematography: Junior Projects" + }, + { + "name": "FMA 3246", + "title": "Making Documentaries" + }, + { + "name": "FMA 3247", + "title": "Cross-Cultural Image Making" + }, + { + "name": "FMA 3341", + "title": "Scene Analysis for Writers and Directors" + }, + { + "name": "FMA 3342", + "title": "Serial Writing" + }, + { + "name": "FMA 3343", + "title": "Screenwriting II" + }, + { + "name": "FMA 3361", + "title": "Screen Performance" + }, + { + "name": "FMA 3451", + "title": "Animation Workshop" + }, + { + "name": "FMA 3452", + "title": "New Technologies Lab" + }, + { + "name": "FMA 3453", + "title": "Interdisciplinary Media Studio" + }, + { + "name": "FMA 3473", + "title": "Moving Camera" + }, + { + "name": "FMA 3551", + "title": "Advanced Editing" + }, + { + "name": "FMA 3553", + "title": "Color Correction" + }, + { + "name": "FMA 3670", + "title": "Topics in Media Culture" + }, + { + "name": "FMA 3671", + "title": "Theory and Practice of Media Culture" + }, + { + "name": "FMA 3677", + "title": "American Film" + }, + { + "name": "FMA 3680", + "title": "Foreign Studies in FMA" + }, + { + "name": "FMA 3696", + "title": "Writing Intensive Film Study" + }, + { + "name": "FMA 3770", + "title": "Topics in Film Study" + }, + { + "name": "FMA 3771", + "title": "Exhibition and Distribution of Independent Media" + }, + { + "name": "FMA 3772", + "title": "Fundraising for Independent Media" + }, + { + "name": "FMA 3773", + "title": "Contemporary Screen Studies" + }, + { + "name": "FMA 3871", + "title": "Film Theory" + }, + { + "name": "FMA 4240", + "title": "Topics in Production" + }, + { + "name": "FMA 4241", + "title": "BFA Directing Projects I" + }, + { + "name": "FMA 4242", + "title": "BFA Directing Projects II" + }, + { + "name": "FMA 4243", + "title": "Film and Video Sound" + }, + { + "name": "FMA 4245", + "title": "Cinematography Master Class I" + }, + { + "name": "FMA 4246", + "title": "Cinematography Master Class II" + }, + { + "name": "FMA 4248", + "title": "Introduction to 3D: Modeling" + }, + { + "name": "FMA 4249", + "title": "Introduction to 3D: Animation" + }, + { + "name": "FMA 4250", + "title": "Topics in Production" + }, + { + "name": "FMA 4251", + "title": "Producing Master Class I" + }, + { + "name": "FMA 4252", + "title": "Producing Master Class II" + }, + { + "name": "FMA 4253", + "title": "Post Production Master Class I" + }, + { + "name": "FMA 4254", + "title": "Post Production Master Class II" + }, + { + "name": "FMA 4282", + "title": "Special Projects" + }, + { + "name": "FMA 4341", + "title": "Screen Directing" + }, + { + "name": "FMA 4342", + "title": "BFA Screenwriting Projects I" + }, + { + "name": "FMA 4343", + "title": "BFA Screenwriting Projects II" + }, + { + "name": "FMA 4440", + "title": "Topics in Production" + }, + { + "name": "FMA 4441", + "title": "Physical Computing" + }, + { + "name": "FMA 4442", + "title": "BFA Media Arts Project I" + }, + { + "name": "FMA 4443", + "title": "BFA Media Arts Project II" + }, + { + "name": "FMA 4451", + "title": "Digital Animation, Compositing and Modeling" + }, + { + "name": "FMA 4461", + "title": "Interactive Narrative" + }, + { + "name": "FMA 4462", + "title": "Video Game Theory and Writing" + }, + { + "name": "FMA 4670", + "title": "Topics in Film Study" + }, + { + "name": "FMA 4671", + "title": "Senior Media Culture Thesis I" + }, + { + "name": "FMA 4673", + "title": "International Cinema" + }, + { + "name": "FMA 4674", + "title": "Anthropological Film/Media" + }, + { + "name": "FMA 4675", + "title": "Women Film/Video Artists" + }, + { + "name": "FMA 4680", + "title": "Advanced Topics in Media Arts Studies" + }, + { + "name": "FMA 4696", + "title": "Senior Media Culture Thesis II" + }, + { + "name": "FMA 4697", + "title": "Advanced Film History" + }, + { + "name": "FMA 4698", + "title": "History of Documentary" + }, + { + "name": "FMA 4770", + "title": "Topics in Producing" + }, + { + "name": "FMA 4771", + "title": "Pathways to Media Careers" + }, + { + "name": "FMA 4940", + "title": "Honors Topics in Film" + }, + { + "name": "FMA 4950", + "title": "Honors Topics in Media" + }, + { + "name": "FMA 4983", + "title": "Honors Reading" + }, + { + "name": "FMA 4991", + "title": "Honors Research/Project" + }, + { + "name": "FMA 5241", + "title": "Cinematography Workshop" + }, + { + "name": "FMA 5242", + "title": "Videography" + }, + { + "name": "FMA 5243", + "title": "Audio Production and Aesthetics" + }, + { + "name": "FMA 5244", + "title": "Lighting for Film & Video" + }, + { + "name": "FMA 5248", + "title": "Introduction to 3D Modeling" + }, + { + "name": "FMA 5341", + "title": "Scene Analysis for Writers and Directors" + }, + { + "name": "FMA 5361", + "title": "Writing for Media I" + }, + { + "name": "FMA 5362", + "title": "Serial Writing" + }, + { + "name": "FMA 5440", + "title": "Topics in Production" + }, + { + "name": "FMA 5451", + "title": "Animation Workshop" + }, + { + "name": "FMA 5452", + "title": "Digital Animation, Compositing and Modeling" + }, + { + "name": "FMA 5468", + "title": "Art-Culture-Technology Seminar" + }, + { + "name": "FMA 5473", + "title": "Moving Camera Workshop" + }, + { + "name": "FMA 5553", + "title": "Color Correction" + }, + { + "name": "FMA 5670", + "title": "M.F.A. Colloquium" + }, + { + "name": "FMA 5671", + "title": "Film History and Theory" + }, + { + "name": "FMA 5672", + "title": "History of Documentary Film" + }, + { + "name": "FMA 5673", + "title": "Time-Image Arts/Cinema Praxis" + }, + { + "name": "FMA 5674", + "title": "Media Arts Thry-Practice" + }, + { + "name": "FMA 5676", + "title": "Anthropological Film/Media" + }, + { + "name": "FMA 5680", + "title": "Topics in Film Study" + }, + { + "name": "FMA 5770", + "title": "Topics in Producing" + }, + { + "name": "FMA 5771", + "title": "Producing" + }, + { + "name": "FMA 5772", + "title": "Fundraising for Independent Media" + }, + { + "name": "FMA 5773", + "title": "Entertainment Industry Perspectives" + }, + { + "name": "FMA 8240", + "title": "Special Problems in Film and Media Arts" + }, + { + "name": "FMA 8241", + "title": "Advanced Cinematography" + }, + { + "name": "FMA 8242", + "title": "Experimental Media Wksp" + }, + { + "name": "FMA 8243", + "title": "Film Sound" + }, + { + "name": "FMA 8244", + "title": "Experimental Methods" + }, + { + "name": "FMA 8245", + "title": "Documentary Workshop" + }, + { + "name": "FMA 8246", + "title": "Advanced Documentary/Fiction Workshop" + }, + { + "name": "FMA 8340", + "title": "Topics in Production" + }, + { + "name": "FMA 8341", + "title": "Screen Directing Theory and Practice" + }, + { + "name": "FMA 8361", + "title": "Writing for Media II" + }, + { + "name": "FMA 8362", + "title": "Joint Writing Workshop 1" + }, + { + "name": "FMA 8363", + "title": "Joint Writing Workshop 2" + }, + { + "name": "FMA 8450", + "title": "Topics in Media" + }, + { + "name": "FMA 8451", + "title": "Digital Animation" + }, + { + "name": "FMA 8452", + "title": "New Technology Laboratory" + }, + { + "name": "FMA 8461", + "title": "Interractive Narrative" + }, + { + "name": "FMA 8462", + "title": "Documentary Arts and Visual Research" + }, + { + "name": "FMA 8551", + "title": "Digital Post-Production" + }, + { + "name": "FMA 8670", + "title": "Topics in Media Studies" + }, + { + "name": "FMA 8673", + "title": "Historical Film Research" + }, + { + "name": "FMA 8674", + "title": "Critical Methods Seminar" + }, + { + "name": "FMA 8675", + "title": "Seminar: International Film" + }, + { + "name": "FMA 8680", + "title": "Advanced Topics in Media Arts Studies" + }, + { + "name": "FMA 8771", + "title": "Exhibition/Distribution" + }, + { + "name": "FMA 8870", + "title": "U Penn Critical Studies" + }, + { + "name": "FMA 8985", + "title": "Teaching in Higher Education, Arts" + }, + { + "name": "FMA 9085", + "title": "Professional Field Experience" + }, + { + "name": "FMA 9086", + "title": "Study-Away Internship" + }, + { + "name": "FMA 9245", + "title": "Thesis Development Workshop" + }, + { + "name": "FMA 9246", + "title": "Thesis Production Workshop" + }, + { + "name": "FMA 9282", + "title": "Directed Projects" + }, + { + "name": "FMA 9346", + "title": "Methodologies and Praxis" + }, + { + "name": "FMA 9683", + "title": "Directed Readings" + }, + { + "name": "FMA 9994", + "title": "Doctoral Comprehensive Exam Study" + }, + { + "name": "FMA 9995", + "title": "M.F.A. Project" + }, + { + "name": "FMA 9998", + "title": "Doctoral Dissertation Proposal" + }, + { + "name": "FMA 9999", + "title": "Doctoral Dissertation" + }, + { + "name": "FMA E000", + "title": "Elective - needs evaluation" + }, + { + "name": "FMA L000", + "title": "Elective LL" + }, + { + "name": "FMA T000", + "title": "Elective" + }, + { + "name": "FMA T002", + "title": "Elective" + }, + { + "name": "FMA T050", + "title": "Half FMA 101" + }, + { + "name": "FMA T051", + "title": "Half FMA 101" + }, + { + "name": "FMA U000", + "title": "Elective UL" + }, + { + "name": "FIN 0822", + "title": "Investing for the Future" + }, + { + "name": "FIN 0922", + "title": "Honors Investing for the Future" + }, + { + "name": "FIN 2527", + "title": "Digital Disruption in Financial Services" + }, + { + "name": "FIN 3101", + "title": "Financial Management" + }, + { + "name": "FIN 3504", + "title": "Intermediate Corporate Finance" + }, + { + "name": "FIN 3505", + "title": "Management of Financial Institutions" + }, + { + "name": "FIN 3506", + "title": "Derivatives and Financial Risk Management" + }, + { + "name": "FIN 3507", + "title": "Security Analysis and Portfolio Management" + }, + { + "name": "FIN 3508", + "title": "Fixed Income Modeling and Analysis" + }, + { + "name": "FIN 3509", + "title": "Real Estate Investment and Finance" + }, + { + "name": "FIN 3512", + "title": "Financial Modeling" + }, + { + "name": "FIN 3513", + "title": "Financial Statement Analysis" + }, + { + "name": "FIN 3514", + "title": "Commercial Real Estate Analysis" + }, + { + "name": "FIN 3515", + "title": "Financial Markets and Institutions for Business" + }, + { + "name": "FIN 3516", + "title": "Advanced Corporate Finance" + }, + { + "name": "FIN 3517", + "title": "Financial Data Analysis" + }, + { + "name": "FIN 3519", + "title": "Introduction to Financial Planning" + }, + { + "name": "FIN 3522", + "title": "Advanced Portfolio Analysis" + }, + { + "name": "FIN 3523", + "title": "Real Estate Financial Modeling" + }, + { + "name": "FIN 3524", + "title": "Real Estate Finance and Mortgage Markets" + }, + { + "name": "FIN 3525", + "title": "Real Estate Development" + }, + { + "name": "FIN 3526", + "title": "Commercial Credit Risk Analysis" + }, + { + "name": "FIN 3551", + "title": "International Finance" + }, + { + "name": "FIN 3571", + "title": "Owl Fund Seminar" + }, + { + "name": "FIN 3580", + "title": "Special Topics" + }, + { + "name": "FIN 3581", + "title": "Field Experience in Finance" + }, + { + "name": "FIN 3582", + "title": "Independent Study" + }, + { + "name": "FIN 3671", + "title": "Advanced Owl Fund Seminar" + }, + { + "name": "FIN 3682", + "title": "Independent Study" + }, + { + "name": "FIN 3901", + "title": "Honors Financial Management" + }, + { + "name": "FIN 3999", + "title": "Honors Thesis I" + }, + { + "name": "FIN 4596", + "title": "Seminar in Corporate Finance" + }, + { + "name": "FIN 4597", + "title": "Seminar in Real Estate Asset Analysis" + }, + { + "name": "FIN 4598", + "title": "Seminar in Financial Planning" + }, + { + "name": "FIN 4696", + "title": "Seminar in Investment Analysis" + }, + { + "name": "FIN 4999", + "title": "Honors Senior Thesis II" + }, + { + "name": "FIN 5001", + "title": "Financial Analysis and Strategy" + }, + { + "name": "FIN 5101", + "title": "Fixed Income Analysis" + }, + { + "name": "FIN 5102", + "title": "Management of Financial Institutions" + }, + { + "name": "FIN 5103", + "title": "Financial Risk Management" + }, + { + "name": "FIN 5104", + "title": "Advanced Corporate Finance" + }, + { + "name": "FIN 5105", + "title": "Advanced Option Theory" + }, + { + "name": "FIN 5106", + "title": "Interest Rate Options" + }, + { + "name": "FIN 5108", + "title": "Derivatives" + }, + { + "name": "FIN 5109", + "title": "Investments" + }, + { + "name": "FIN 5111", + "title": "Corporate Valuation" + }, + { + "name": "FIN 5112", + "title": "Capital Struc Business" + }, + { + "name": "FIN 5113", + "title": "Financial Analysis & Planning" + }, + { + "name": "FIN 5114", + "title": "Financial Markets and Institutions" + }, + { + "name": "FIN 5115", + "title": "Financial Modeling for Investments and Corporate Finance" + }, + { + "name": "FIN 5116", + "title": "Financial Modeling: Corporate" + }, + { + "name": "FIN 5117", + "title": "Portfolio Analysis" + }, + { + "name": "FIN 5118", + "title": "Project Analysis & Valuation" + }, + { + "name": "FIN 5119", + "title": "Mergers, Acquisitions and Restructurings" + }, + { + "name": "FIN 5121", + "title": "Continuous Time Finance" + }, + { + "name": "FIN 5122", + "title": "Financial Markets and Institutions I" + }, + { + "name": "FIN 5123", + "title": "Financial Markets and Institutions II" + }, + { + "name": "FIN 5124", + "title": "Working Capital Management Strategies" + }, + { + "name": "FIN 5125", + "title": "Corporate Governance and Financing Decisions" + }, + { + "name": "FIN 5126", + "title": "Financial Risk Management I: Application of Futures" + }, + { + "name": "FIN 5127", + "title": "Financial Risk Management II: Application of Options" + }, + { + "name": "FIN 5128", + "title": "Global Finance I: Markets" + }, + { + "name": "FIN 5129", + "title": "Global Finance II: Management" + }, + { + "name": "FIN 5132", + "title": "Securities Analysis" + }, + { + "name": "FIN 5134", + "title": "Fintech, Blockchain and Digital Disruption" + }, + { + "name": "FIN 5137", + "title": "Int'l Fin Mkt & Corp Fin" + }, + { + "name": "FIN 5156", + "title": "Private Equity" + }, + { + "name": "FIN 5170", + "title": "Special Topics" + }, + { + "name": "FIN 5180", + "title": "Special Topics Finance" + }, + { + "name": "FIN 5182", + "title": "Independent Study" + }, + { + "name": "FIN 5190", + "title": "Special Topics - Finance" + }, + { + "name": "FIN 5282", + "title": "Independent Study" + }, + { + "name": "FIN 5387", + "title": "Practicum in Financial Analysis and Strategy" + }, + { + "name": "FIN 5501", + "title": "International Financial Markets" + }, + { + "name": "FIN 5502", + "title": "International Financial Management" + }, + { + "name": "FIN 5601", + "title": "Financial Technology" + }, + { + "name": "FIN 5602", + "title": "Corporate Finance" + }, + { + "name": "FIN 5603", + "title": "Financial Accounting" + }, + { + "name": "FIN 5604", + "title": "Derivative Markets" + }, + { + "name": "FIN 5605", + "title": "Fixed Income" + }, + { + "name": "FIN 5607", + "title": "Stochastic Calculus & Finance" + }, + { + "name": "FIN 5608", + "title": "Ethics and Leadership I" + }, + { + "name": "FIN 5609", + "title": "Ethics and Leadership II" + }, + { + "name": "FIN 5612", + "title": "Asset Pricing" + }, + { + "name": "FIN 5613", + "title": "Derivative Valuation" + }, + { + "name": "FIN 5614", + "title": "Continuous Time Finance" + }, + { + "name": "FIN 5615", + "title": "Data Science in Finance" + }, + { + "name": "FIN 5617", + "title": "Financial Institutions & Risk" + }, + { + "name": "FIN 5618", + "title": "Corporate Value Management" + }, + { + "name": "FIN 5619", + "title": "Quant Fixed Income" + }, + { + "name": "FIN 5621", + "title": "Structured Finance" + }, + { + "name": "FIN 5622", + "title": "Machine Learning in Finance" + }, + { + "name": "FIN 5623", + "title": "Risk Measurement" + }, + { + "name": "FIN 5624", + "title": "Numerical Methods" + }, + { + "name": "FIN 5627", + "title": "Financial Econometrics" + }, + { + "name": "FIN 5628", + "title": "Global Economy" + }, + { + "name": "FIN 5629", + "title": "Value at Risk" + }, + { + "name": "FIN 5631", + "title": "Financial Time Series" + }, + { + "name": "FIN 5632", + "title": "Investment Management" + }, + { + "name": "FIN 5634", + "title": "Stochastic Volatility" + }, + { + "name": "FIN 5637", + "title": "Applied Corporate Finance" + }, + { + "name": "FIN 5638", + "title": "Behavioral Finance" + }, + { + "name": "FIN 5639", + "title": "Quantitative Risk Modeling" + }, + { + "name": "FIN 5641", + "title": "Alternative Investments" + }, + { + "name": "FIN 5642", + "title": "Entrepreneurial Companies" + }, + { + "name": "FIN 5643", + "title": "Structured Products" + }, + { + "name": "FIN 5646", + "title": "Frontiers in Quantitative Finance" + }, + { + "name": "FIN 5647", + "title": "Financial Reporting & Analysis" + }, + { + "name": "FIN 5648", + "title": "Quantitative Portfolios" + }, + { + "name": "FIN 5649", + "title": "Enterprise Risk Management" + }, + { + "name": "FIN 5671", + "title": "Financial Analysis I" + }, + { + "name": "FIN 5672", + "title": "Financial Analysis II" + }, + { + "name": "FIN 5673", + "title": "Financial Risk Management I" + }, + { + "name": "FIN 5674", + "title": "Financial Risk Management II" + }, + { + "name": "FIN 5675", + "title": "Professional Development" + }, + { + "name": "FIN 5683", + "title": "Special Study in Finance" + }, + { + "name": "FIN 5690", + "title": "Special Topics in Finance" + }, + { + "name": "FIN 5801", + "title": "Financing the Enterprise" + }, + { + "name": "FIN 5802", + "title": "Enterprise Financial Management" + }, + { + "name": "FIN 5882", + "title": "Independent Study" + }, + { + "name": "FIN 5890", + "title": "Special Topics" + }, + { + "name": "FIN 9001", + "title": "Corp Finance Theory" + }, + { + "name": "FIN 9002", + "title": "Empirical Research in Corporate Finance" + }, + { + "name": "FIN 9003", + "title": "Banking and Financial Institutions" + }, + { + "name": "FIN 9004", + "title": "Seminar in Global Finance and Governance" + }, + { + "name": "FIN 9005", + "title": "Empirical Asset Pricing" + }, + { + "name": "FIN 9011", + "title": "Proseminar in Finance" + }, + { + "name": "FIN 9013", + "title": "Alternative Investments" + }, + { + "name": "FIN 9014", + "title": "Best Practices in Valuation" + }, + { + "name": "FIN 9015", + "title": "Corporate Governance" + }, + { + "name": "FIN 9016", + "title": "Derivatives and Risk Management" + }, + { + "name": "FIN 9017", + "title": "Dissertation Methodologies" + }, + { + "name": "FIN 9018", + "title": "Financial Markets and Institutions" + }, + { + "name": "FIN 9019", + "title": "Investment Allocation and Management" + }, + { + "name": "FIN 9021", + "title": "Mergers and Acquisitions" + }, + { + "name": "FIN 9022", + "title": "Private Equity" + }, + { + "name": "FIN 9023", + "title": "Real Estate Finance" + }, + { + "name": "FIN 9090", + "title": "Spec Topic Finance" + }, + { + "name": "FIN 9183", + "title": "Directed Study in Fin" + }, + { + "name": "FIN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "FLED 5429", + "title": "Curriculum and Methods in Foreign Languages" + }, + { + "name": "FLED 5431", + "title": "Innovations in Foreign Language Education" + }, + { + "name": "FLED 5433", + "title": "Multimedia Approaches to Teaching Foreign Language" + }, + { + "name": "FLED 5435", + "title": "Applic Res Sec Lang Ed" + }, + { + "name": "FLED 5437", + "title": "Teaching Second Language Culture" + }, + { + "name": "FLED 5460", + "title": "Spec Proj Foreign Lng Ed" + }, + { + "name": "FLED 5470", + "title": "Spec Proj Foreign Lng Ed" + }, + { + "name": "FLED 8645", + "title": "Sem in Sec Foreign Lang Ed" + }, + { + "name": "FDPR 1501", + "title": "Introduction to Art and Design" + }, + { + "name": "FDPR 1502", + "title": "Investigations of Art and Design" + }, + { + "name": "FDPR 1511", + "title": "Foundation Drawing" + }, + { + "name": "FDPR 1512", + "title": "Foundation Drawing" + }, + { + "name": "FDPR 1521", + "title": "2D Foundation Principles" + }, + { + "name": "FDPR 1522", + "title": "2D Foundation Principles" + }, + { + "name": "FDPR 1531", + "title": "3D Foundation Principles/W" + }, + { + "name": "FDPR 1532", + "title": "3D Foundation Principles/C" + }, + { + "name": "FDPR 1541", + "title": "Foundation Computer" + }, + { + "name": "FDPR 1542", + "title": "Foundation Computer Lab" + }, + { + "name": "FDPR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "FREN 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "FREN 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "FREN 1001", + "title": "Introduction to French I" + }, + { + "name": "FREN 1002", + "title": "Introduction to French II" + }, + { + "name": "FREN 1003", + "title": "Introduction to French III" + }, + { + "name": "FREN 1221", + "title": "Africa, Caribbean, France" + }, + { + "name": "FREN 1703", + "title": "Cours Pratique de Langue Française - Elements" + }, + { + "name": "FREN 1704", + "title": "Cours Pratique de Langue Française - Elements" + }, + { + "name": "FREN 1706", + "title": "Cours Pratique de Langue Française - Elements" + }, + { + "name": "FREN 2001", + "title": "Intermediate" + }, + { + "name": "FREN 2021", + "title": "Conversation I" + }, + { + "name": "FREN 2041", + "title": "Reading I" + }, + { + "name": "FREN 2042", + "title": "Reading II: Introduction to French Literary Analysis" + }, + { + "name": "FREN 2096", + "title": "Composition I" + }, + { + "name": "FREN 2501", + "title": "French for Business I" + }, + { + "name": "FREN 2703", + "title": "Cours Pratique de Langue Francaise - Intermediate Level" + }, + { + "name": "FREN 2704", + "title": "Cours Pratique de Langue Francaise - Intermediate Level" + }, + { + "name": "FREN 2706", + "title": "Cours Pratique de Langue Francaise - Intermediate Level" + }, + { + "name": "FREN 3001", + "title": "Advanced Grammar" + }, + { + "name": "FREN 3021", + "title": "Conversation II" + }, + { + "name": "FREN 3096", + "title": "Composition II" + }, + { + "name": "FREN 3101", + "title": "Survey of French Literature I" + }, + { + "name": "FREN 3102", + "title": "Survey of French Literature II" + }, + { + "name": "FREN 3201", + "title": "Culture and Civilization I" + }, + { + "name": "FREN 3240", + "title": "Topics in French Cinema and Literature (in English)" + }, + { + "name": "FREN 3241", + "title": "French Culture through Film" + }, + { + "name": "FREN 3703", + "title": "Cours Pratique de Langue Francaise - Upper Level" + }, + { + "name": "FREN 3704", + "title": "Cours Pratique de Langue Francaise - Upper Level" + }, + { + "name": "FREN 3706", + "title": "Cours Pratique de Langue Francaise - Upper Level" + }, + { + "name": "FREN 3742", + "title": "Phonetics" + }, + { + "name": "FREN 3766", + "title": "Explication de Textes" + }, + { + "name": "FREN 3901", + "title": "Honors Seminar" + }, + { + "name": "FREN 4061", + "title": "Composition III: Creative Writing Through Reading" + }, + { + "name": "FREN 4140", + "title": "Topics in French Literature" + }, + { + "name": "FREN 4161", + "title": "Francophone Literatures and Cultures" + }, + { + "name": "FREN 4182", + "title": "Independent Study" + }, + { + "name": "FREN 4200", + "title": "Special Topics" + }, + { + "name": "FREN 4240", + "title": "Topics in French Cinema and Literature" + }, + { + "name": "FREN 4282", + "title": "Independent Study" + }, + { + "name": "FREN 4401", + "title": "Techniques of Translation" + }, + { + "name": "FREN 4703", + "title": "Cours Pratique de Langue Francaise - Advanced Level" + }, + { + "name": "FREN 4704", + "title": "Cours Pratique de Langue Francaise - Advanced Level" + }, + { + "name": "FREN 4706", + "title": "Cours Pratique de Langue Francaise - Advanced Level" + }, + { + "name": "FREN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "FREN F000", + "title": "* See Statement Below" + }, + { + "name": "FREN L000", + "title": "Elective LL" + }, + { + "name": "FREN P000", + "title": "Elective P" + }, + { + "name": "FREN U000", + "title": "Elective UL" + }, + { + "name": "GSWS 0801", + "title": "Border Crossings: Gendered Dimensions of Globalization" + }, + { + "name": "GSWS 0824", + "title": "Gender and World Societies" + }, + { + "name": "GSWS 0832", + "title": "Politics of Identity in America" + }, + { + "name": "GSWS 0851", + "title": "Gender in America" + }, + { + "name": "GSWS 0863", + "title": "Living for Change: Autobiographies of Women in Radical Social Movements" + }, + { + "name": "GSWS 0932", + "title": "Honors Politics of Identity in America" + }, + { + "name": "GSWS 0963", + "title": "Honors Living for Change: Autobiographies of Women in Radical Social Movements" + }, + { + "name": "GSWS 1076", + "title": "Introduction to Gender Studies" + }, + { + "name": "GSWS 1096", + "title": "Introduction to Women's Studies" + }, + { + "name": "GSWS 1101", + "title": "American Women's Lives" + }, + { + "name": "GSWS 1197", + "title": "American Women's Lives" + }, + { + "name": "GSWS 1201", + "title": "International Women's Writing" + }, + { + "name": "GSWS 1301", + "title": "Foundations in Women's Studies" + }, + { + "name": "GSWS 1676", + "title": "Men and Women in American Society" + }, + { + "name": "GSWS 1696", + "title": "Men and Women in American Society" + }, + { + "name": "GSWS 1700", + "title": "Special Topics" + }, + { + "name": "GSWS 1708", + "title": "Gender and History" + }, + { + "name": "GSWS 2000", + "title": "Special Topics" + }, + { + "name": "GSWS 2001", + "title": "Women in Religion and Society" + }, + { + "name": "GSWS 2002", + "title": "Gender in the Cinema" + }, + { + "name": "GSWS 2003", + "title": "Gender in Classical Antiquity" + }, + { + "name": "GSWS 2007", + "title": "Creative Writing: Fiction: LGBTQ Lives" + }, + { + "name": "GSWS 2051", + "title": "Critical Race Feminist Theory" + }, + { + "name": "GSWS 2082", + "title": "Independent Study" + }, + { + "name": "GSWS 2096", + "title": "The Politics of Diversity" + }, + { + "name": "GSWS 2108", + "title": "Women's Voices in Russian Culture" + }, + { + "name": "GSWS 2109", + "title": "Sexuality and Gender in American History" + }, + { + "name": "GSWS 2152", + "title": "Introduction to Feminist Philosophy" + }, + { + "name": "GSWS 2159", + "title": "Sex/Gender/Film/History" + }, + { + "name": "GSWS 2160", + "title": "Topics in Women's Literature" + }, + { + "name": "GSWS 2202", + "title": "Religion and Human Sexuality East & West" + }, + { + "name": "GSWS 2207", + "title": "Creative Writing: Non-Fiction: Queer Lives" + }, + { + "name": "GSWS 2305", + "title": "LGBTQ Film: The Coming of Age Genre" + }, + { + "name": "GSWS 2306", + "title": "LGBTQ Film: Queer Representation" + }, + { + "name": "GSWS 2405", + "title": "Gay and Lesbian Lives" + }, + { + "name": "GSWS 2406", + "title": "LGBTQ Social Movements" + }, + { + "name": "GSWS 2815", + "title": "Love, Marriage, and Family" + }, + { + "name": "GSWS 2816", + "title": "Gender, Class, and Nation" + }, + { + "name": "GSWS 2817", + "title": "Gender, War, and Society" + }, + { + "name": "GSWS 2900", + "title": "Honors Special Topics" + }, + { + "name": "GSWS 2996", + "title": "Honors The Politics of Diversity" + }, + { + "name": "GSWS 3000", + "title": "Special Topics" + }, + { + "name": "GSWS 3003", + "title": "Women Writers In Black Literature" + }, + { + "name": "GSWS 3006", + "title": "The American Woman: Visions and Revisions" + }, + { + "name": "GSWS 3031", + "title": "Women in Chinese Literature" + }, + { + "name": "GSWS 3040", + "title": "Special Topics" + }, + { + "name": "GSWS 3082", + "title": "Independent Study" + }, + { + "name": "GSWS 3097", + "title": "Feminist Theory" + }, + { + "name": "GSWS 3197", + "title": "Themes/Genres in Women's Literature" + }, + { + "name": "GSWS 3205", + "title": "Queer Novels of the 20th Century" + }, + { + "name": "GSWS 3206", + "title": "Queer Novels of the 21st Century" + }, + { + "name": "GSWS 3225", + "title": "Women in U.S. History" + }, + { + "name": "GSWS 3231", + "title": "German Minority Identities: Gendered and Cultural Dimensions (in English)" + }, + { + "name": "GSWS 3235", + "title": "Weimar Culture: Race, Gender, Sexuality and Nation (in English)" + }, + { + "name": "GSWS 3236", + "title": "Technology in Popular Culture: A Gender Analysis" + }, + { + "name": "GSWS 3241", + "title": "Getting Medieval: Gender, Sex, Power" + }, + { + "name": "GSWS 3258", + "title": "Women and Work" + }, + { + "name": "GSWS 3259", + "title": "Women and Poverty" + }, + { + "name": "GSWS 3277", + "title": "Women in the Economy" + }, + { + "name": "GSWS 3431", + "title": "Women's Lives Modern Europe" + }, + { + "name": "GSWS 3542", + "title": "Women and Society in Japan" + }, + { + "name": "GSWS 3546", + "title": "Sexuality and Gender" + }, + { + "name": "GSWS 3559", + "title": "Health and Reproduction" + }, + { + "name": "GSWS 3721", + "title": "Women in Pre-Industrial Societies" + }, + { + "name": "GSWS 3722", + "title": "Women and Political Violence" + }, + { + "name": "GSWS 3900", + "title": "Honors Topics in Women's Studies" + }, + { + "name": "GSWS 3997", + "title": "Honors: Feminist Theory" + }, + { + "name": "GSWS 4000", + "title": "Seminar in Women's Studies" + }, + { + "name": "GSWS 4004", + "title": "Women and Criminal Justice" + }, + { + "name": "GSWS 4097", + "title": "Gender, Race, Class and The City" + }, + { + "name": "GSWS 4121", + "title": "Women and Politics" + }, + { + "name": "GSWS 4389", + "title": "Field Work" + }, + { + "name": "GSWS 4396", + "title": "Research Seminar" + }, + { + "name": "GSWS 4411", + "title": "Secularism: Jewish and Muslim Women" + }, + { + "name": "GSWS 4696", + "title": "Asian Women in Transition" + }, + { + "name": "GSWS 4999", + "title": "Honors Thesis" + }, + { + "name": "GSWS 5000", + "title": "Special Topics" + }, + { + "name": "GSWS 8001", + "title": "Feminist and Queer Studies" + }, + { + "name": "GSWS 9082", + "title": "Independent Study" + }, + { + "name": "GSWS 9991", + "title": "Research Seminar" + }, + { + "name": "GSWS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GSWS F000", + "title": "* See Statement Below" + }, + { + "name": "GSWS L000", + "title": "Elective LL" + }, + { + "name": "GSWS P000", + "title": "Elective P" + }, + { + "name": "GSWS U000", + "title": "Elective UL" + }, + { + "name": "GUS 0814", + "title": "Human Ecology" + }, + { + "name": "GUS 0821", + "title": "Digital Mapping: From Mercator to Mashups" + }, + { + "name": "GUS 0829", + "title": "The History & Significance of Race in America" + }, + { + "name": "GUS 0831", + "title": "Global Cities" + }, + { + "name": "GUS 0842", + "title": "Sustainable Environments" + }, + { + "name": "GUS 0848", + "title": "American Revolutions" + }, + { + "name": "GUS 0861", + "title": "Urban Dynamics: Global, Regional, and Local Connections" + }, + { + "name": "GUS 0862", + "title": "Development & Globalization" + }, + { + "name": "GUS 0867", + "title": "World Regions and Cultures: Diversity & Interconnections" + }, + { + "name": "GUS 0921", + "title": "Honors Digital Mapping: From Mercator to Mashups" + }, + { + "name": "GUS 0942", + "title": "Honors Sustainable Environments" + }, + { + "name": "GUS 1021", + "title": "Urban Society: Race, Class, and Community" + }, + { + "name": "GUS 1022", + "title": "Urban Society" + }, + { + "name": "GUS 1025", + "title": "World Urban Patterns" + }, + { + "name": "GUS 1031", + "title": "Geography of World Affairs" + }, + { + "name": "GUS 1052", + "title": "Introduction to the Physical Environment" + }, + { + "name": "GUS 1171", + "title": "Urban Affairs" + }, + { + "name": "GUS 1172", + "title": "Urban Affairs" + }, + { + "name": "GUS 1173", + "title": "Urban Affairs" + }, + { + "name": "GUS 1174", + "title": "Urban Affairs" + }, + { + "name": "GUS 1175", + "title": "Urban Affairs" + }, + { + "name": "GUS 1176", + "title": "Urban Affairs" + }, + { + "name": "GUS 1177", + "title": "Urban Affairs" + }, + { + "name": "GUS 1651", + "title": "Environment and Society" + }, + { + "name": "GUS 1961", + "title": "Honors World Urban Patterns" + }, + { + "name": "GUS 2001", + "title": "Cities" + }, + { + "name": "GUS 2002", + "title": "Space and Place" + }, + { + "name": "GUS 2012", + "title": "Urban Ethnicity" + }, + { + "name": "GUS 2014", + "title": "Urban Geography" + }, + { + "name": "GUS 2017", + "title": "Population Geography" + }, + { + "name": "GUS 2021", + "title": "Philadelphia Neighborhoods" + }, + { + "name": "GUS 2025", + "title": "American Place" + }, + { + "name": "GUS 2031", + "title": "Economic Geography" + }, + { + "name": "GUS 2032", + "title": "Urban Systems in a Global Economy" + }, + { + "name": "GUS 2051", + "title": "Urban Environment" + }, + { + "name": "GUS 2061", + "title": "Map Interpretation" + }, + { + "name": "GUS 2071", + "title": "Geography of the United States and Canada" + }, + { + "name": "GUS 2073", + "title": "African Development" + }, + { + "name": "GUS 2074", + "title": "East and South Asia" + }, + { + "name": "GUS 2096", + "title": "Problems of Environmental Quality" + }, + { + "name": "GUS 2097", + "title": "Urban Systems in the Global Economy" + }, + { + "name": "GUS 2121", + "title": "Russian Cities" + }, + { + "name": "GUS 2197", + "title": "Research Design in Geography and Urban Studies" + }, + { + "name": "GUS 3000", + "title": "Special Topics in Geography and Urban Studies" + }, + { + "name": "GUS 3001", + "title": "Images of the City in Popular Culture" + }, + { + "name": "GUS 3005", + "title": "The City in History" + }, + { + "name": "GUS 3011", + "title": "Historical Geography of North America" + }, + { + "name": "GUS 3013", + "title": "African Americans in Philadelphia" + }, + { + "name": "GUS 3014", + "title": "Urban Social Geography" + }, + { + "name": "GUS 3015", + "title": "The Geographic Basis of Land Use Planning" + }, + { + "name": "GUS 3016", + "title": "Contemporary Issues in City Planning" + }, + { + "name": "GUS 3018", + "title": "Economic Development Planning for Cities" + }, + { + "name": "GUS 3019", + "title": "Community Development Workshop" + }, + { + "name": "GUS 3021", + "title": "International Urbanization" + }, + { + "name": "GUS 3025", + "title": "Urban Crime Patterns" + }, + { + "name": "GUS 3044", + "title": "Urban Housing" + }, + { + "name": "GUS 3051", + "title": "Environmental Policy Issues" + }, + { + "name": "GUS 3052", + "title": "Environmental Problems in Asia" + }, + { + "name": "GUS 3053", + "title": "Climatology" + }, + { + "name": "GUS 3054", + "title": "Energy, Resources, and Conservation" + }, + { + "name": "GUS 3055", + "title": "Geography of Hazards" + }, + { + "name": "GUS 3056", + "title": "Political Ecology" + }, + { + "name": "GUS 3057", + "title": "Sustainable Cities" + }, + { + "name": "GUS 3061", + "title": "Fundamentals of Cartography" + }, + { + "name": "GUS 3062", + "title": "Fundamentals of Geographic Information Systems" + }, + { + "name": "GUS 3063", + "title": "Environmental Remote Sensing" + }, + { + "name": "GUS 3064", + "title": "Qualitative Methods" + }, + { + "name": "GUS 3065", + "title": "Census Analysis with GIS" + }, + { + "name": "GUS 3067", + "title": "GIS and Location Analysis" + }, + { + "name": "GUS 3069", + "title": "GIS for Health Data Analysis" + }, + { + "name": "GUS 3071", + "title": "Medical Geography" + }, + { + "name": "GUS 3073", + "title": "Geography of Travel and Tourism" + }, + { + "name": "GUS 3074", + "title": "Sicily: The Land, People and Identity" + }, + { + "name": "GUS 3075", + "title": "Comparative Regional Development" + }, + { + "name": "GUS 3076", + "title": "Metropolitan Tokyo" + }, + { + "name": "GUS 3085", + "title": "Internship in Geography and Urban Studies" + }, + { + "name": "GUS 3096", + "title": "Urban Policy Analysis" + }, + { + "name": "GUS 3097", + "title": "Environment & Development" + }, + { + "name": "GUS 3161", + "title": "Spatial Statistics" + }, + { + "name": "GUS 3307", + "title": "Transportation & Culture" + }, + { + "name": "GUS 3314", + "title": "Food Studies: A Geographical Perspective" + }, + { + "name": "GUS 3900", + "title": "Honors Special Topics" + }, + { + "name": "GUS 3928", + "title": "Honors Metropolitan Tokyo" + }, + { + "name": "GUS 4000", + "title": "Special Topics in Geography and Urban Studies" + }, + { + "name": "GUS 4013", + "title": "Drugs in Urban Society" + }, + { + "name": "GUS 4017", + "title": "Health and Environment Seminar" + }, + { + "name": "GUS 4061", + "title": "Cartographic Production " + }, + { + "name": "GUS 4064", + "title": "Web Mapping and GIS" + }, + { + "name": "GUS 4065", + "title": "Urban Geographic Information Systems" + }, + { + "name": "GUS 4068", + "title": "Census Analysis with GIS" + }, + { + "name": "GUS 4072", + "title": "Advanced Remote Sensing" + }, + { + "name": "GUS 4073", + "title": "Geovisualization" + }, + { + "name": "GUS 4078", + "title": "Research Methods in Environmental Studies" + }, + { + "name": "GUS 4082", + "title": "Independent Study Environmental Geography" + }, + { + "name": "GUS 4087", + "title": "Mapping Practicum I" + }, + { + "name": "GUS 4097", + "title": "Gender, Race, Class, and the City" + }, + { + "name": "GUS 4182", + "title": "Independent Study Research" + }, + { + "name": "GUS 4198", + "title": "Senior Seminar in Geography and Urban Studies" + }, + { + "name": "GUS 4282", + "title": "Independent Study Human Geography" + }, + { + "name": "GUS 4382", + "title": "Independent Study Urban Policy" + }, + { + "name": "GUS 4917", + "title": "Honors: Health and Environment Seminar" + }, + { + "name": "GUS 4982", + "title": "Honors Independent Study Environmental Geography" + }, + { + "name": "GUS 5000", + "title": "Special Topic Seminars" + }, + { + "name": "GUS 5010", + "title": "Special Topics in GUS" + }, + { + "name": "GUS 5014", + "title": "Urban Social Geography" + }, + { + "name": "GUS 5015", + "title": "Land Use Planning" + }, + { + "name": "GUS 5017", + "title": "Health and Environment Seminar" + }, + { + "name": "GUS 5018", + "title": "Economic Development and Planning Cities" + }, + { + "name": "GUS 5021", + "title": "International Urbanization" + }, + { + "name": "GUS 5031", + "title": "GIS Programming" + }, + { + "name": "GUS 5041", + "title": "Sustainable Natural-Human Systems" + }, + { + "name": "GUS 5044", + "title": "Urban Housing" + }, + { + "name": "GUS 5051", + "title": "Hazards Geography" + }, + { + "name": "GUS 5056", + "title": "Political Ecology" + }, + { + "name": "GUS 5061", + "title": "Cartographic Production" + }, + { + "name": "GUS 5062", + "title": "Fundamentals of Geographical Information Systems" + }, + { + "name": "GUS 5063", + "title": "Remote Sensing" + }, + { + "name": "GUS 5065", + "title": "Urban Geographical Information Systems" + }, + { + "name": "GUS 5066", + "title": "Environmental Applications of GIS" + }, + { + "name": "GUS 5067", + "title": "GIS and Location Analysis" + }, + { + "name": "GUS 5068", + "title": "Census Analysis with Geographical Information Systems" + }, + { + "name": "GUS 5069", + "title": "GIS for Health Data Analysis" + }, + { + "name": "GUS 5071", + "title": "Medical Geography" + }, + { + "name": "GUS 5072", + "title": "Advanced Remote Sensing" + }, + { + "name": "GUS 5073", + "title": "Geovisualization" + }, + { + "name": "GUS 5075", + "title": "Regional Development" + }, + { + "name": "GUS 5096", + "title": "Problems in Environmental Quality" + }, + { + "name": "GUS 5097", + "title": "Race, Class, Gender in Cities" + }, + { + "name": "GUS 5159", + "title": "Geographic Inquiry" + }, + { + "name": "GUS 5161", + "title": "Statistics for Urban Spatial Analysis" + }, + { + "name": "GUS 5162", + "title": "Advanced Statistics for Urban Applications" + }, + { + "name": "GUS 5163", + "title": "Qualitative Methods" + }, + { + "name": "GUS 5165", + "title": "Community Based Program Evaluation" + }, + { + "name": "GUS 5304", + "title": "Food Studies" + }, + { + "name": "GUS 5307", + "title": "Transportation and Culture" + }, + { + "name": "GUS 8006", + "title": "Geographic Thought" + }, + { + "name": "GUS 8010", + "title": "Geographic Inquiry" + }, + { + "name": "GUS 8011", + "title": "History and Theory of Urban Studies" + }, + { + "name": "GUS 8016", + "title": "Public Policy for Urban Regions" + }, + { + "name": "GUS 8021", + "title": "Geography of Urban Services" + }, + { + "name": "GUS 8031", + "title": "Critical Issues in Globalization, Sustainability, and Social Justice" + }, + { + "name": "GUS 8033", + "title": "Urban Economic and Spatial Structure" + }, + { + "name": "GUS 8043", + "title": "Seminar on Homelessness in America" + }, + { + "name": "GUS 8045", + "title": "Poverty and Employment" + }, + { + "name": "GUS 8047", + "title": "Comparative Urban History" + }, + { + "name": "GUS 8050", + "title": "Environmental Seminar" + }, + { + "name": "GUS 8055", + "title": "Sustainable Cities" + }, + { + "name": "GUS 8065", + "title": "Cartographic Design" + }, + { + "name": "GUS 8066", + "title": "Application Development for Geographic Information Systems" + }, + { + "name": "GUS 8067", + "title": "Spatial Database Design" + }, + { + "name": "GUS 8068", + "title": "Web Mapping and Map Servers" + }, + { + "name": "GUS 8069", + "title": "GIS Ethics and Professional Practice" + }, + { + "name": "GUS 8097", + "title": "Research Design" + }, + { + "name": "GUS 8113", + "title": "Community-Based Research" + }, + { + "name": "GUS 8985", + "title": "Teaching in Higher Education: Social Sciences" + }, + { + "name": "GUS 9082", + "title": "Independent Study: Geography and Urban Studies" + }, + { + "name": "GUS 9083", + "title": "Readings in Geography" + }, + { + "name": "GUS 9085", + "title": "Internship in Geography and Urban Studies" + }, + { + "name": "GUS 9086", + "title": "Internship Paper" + }, + { + "name": "GUS 9087", + "title": "Mapping Practicum I" + }, + { + "name": "GUS 9187", + "title": "GIS Capstone" + }, + { + "name": "GUS 9991", + "title": "Master's Research Paper" + }, + { + "name": "GUS 9994", + "title": "Doctoral Qualifying Examination" + }, + { + "name": "GUS 9996", + "title": "Masters Research" + }, + { + "name": "GUS 9998", + "title": "Dissertation Proposal" + }, + { + "name": "GUS 9999", + "title": "Dissertation Research" + }, + { + "name": "GUS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GUS F000", + "title": "* See Statement Below" + }, + { + "name": "GUS L000", + "title": "Elective LL" + }, + { + "name": "GUS P000", + "title": "Elective P" + }, + { + "name": "GUS U000", + "title": "Elective UL" + }, + { + "name": "GER 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "GER 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "GER 1001", + "title": "Introduction to German I" + }, + { + "name": "GER 1002", + "title": "Introduction to German II" + }, + { + "name": "GER 1003", + "title": "Introduction to German III" + }, + { + "name": "GER 1941", + "title": "Honors Literature and Culture of Central Europe in the 20th Century" + }, + { + "name": "GER 2001", + "title": "Intermediate" + }, + { + "name": "GER 2011", + "title": "Immersion in German" + }, + { + "name": "GER 2041", + "title": "Reading I" + }, + { + "name": "GER 2122", + "title": "Conversation I" + }, + { + "name": "GER 2131", + "title": "The Contemporary German-Speaking World" + }, + { + "name": "GER 2141", + "title": "Hesse, Kafka, Mann, and Rilke" + }, + { + "name": "GER 2501", + "title": "German for Business I" + }, + { + "name": "GER 3011", + "title": "Intensive German in Germany" + }, + { + "name": "GER 3021", + "title": "Conversation II" + }, + { + "name": "GER 3096", + "title": "Composition I" + }, + { + "name": "GER 3101", + "title": "Introduction to German Literature I" + }, + { + "name": "GER 3102", + "title": "Introduction to German Literature II" + }, + { + "name": "GER 3182", + "title": "Independent Study I" + }, + { + "name": "GER 3201", + "title": "Culture and Civilization I" + }, + { + "name": "GER 3202", + "title": "Culture and Civilization II" + }, + { + "name": "GER 3221", + "title": "German Culture through Film" + }, + { + "name": "GER 3231", + "title": "German Minority Identities: Gendered and Cultural Dimensions (in English)" + }, + { + "name": "GER 3235", + "title": "Weimar Culture: Race, Gender, Sexuality and Nation (in English)" + }, + { + "name": "GER 3275", + "title": "Fin-de-Siecle Vienna: Birthplace of Modernity around 1900" + }, + { + "name": "GER 3282", + "title": "Independent Study II" + }, + { + "name": "GER 3363", + "title": "Diabolical Dilemmas: The Faust Theme in German Literature" + }, + { + "name": "GER 4140", + "title": "Seminar in Special Topic" + }, + { + "name": "GER 4141", + "title": "German Expressionism" + }, + { + "name": "GER 4142", + "title": "Novelle" + }, + { + "name": "GER 4144", + "title": "The Golden Age: Goethe and Schiller" + }, + { + "name": "GER 4145", + "title": "Twentieth Century Drama: From Expressionism to the Absurd and Beyond" + }, + { + "name": "GER 4146", + "title": "Twentieth Century Prose: Searching for Identity" + }, + { + "name": "GER 4147", + "title": "Kafka" + }, + { + "name": "GER 4182", + "title": "Advanced Independent Study I" + }, + { + "name": "GER 4221", + "title": "German Culture Through Film" + }, + { + "name": "GER 4231", + "title": "German Minority Identities: Gendered and Cultural Dimensions" + }, + { + "name": "GER 4235", + "title": "Weimar Culture: Race, Gender, Sexuality and Nation" + }, + { + "name": "GER 4282", + "title": "Advanced Independent Study II" + }, + { + "name": "GER 4296", + "title": "Composition II" + }, + { + "name": "GER 4301", + "title": "History of the German Language" + }, + { + "name": "GER 4940", + "title": "Honors: Special Topics" + }, + { + "name": "GER E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GER F000", + "title": "* See Statement Below" + }, + { + "name": "GER L000", + "title": "Elective LL" + }, + { + "name": "GER P000", + "title": "Elective P" + }, + { + "name": "GER U000", + "title": "Elective UL" + }, + { + "name": "GBST 2000", + "title": "Special Topics in Global Studies" + }, + { + "name": "GBST 2010", + "title": "Special Topics in Global Security" + }, + { + "name": "GBST 2020", + "title": "Special Topics in Global Economy" + }, + { + "name": "GBST 2030", + "title": "Special Topics in Global Cultures" + }, + { + "name": "GBST 2082", + "title": "Independent Study" + }, + { + "name": "GBST 2096", + "title": "Introduction to Global Studies" + }, + { + "name": "GBST 2900", + "title": "Honors Special Topics" + }, + { + "name": "GBST 3000", + "title": "Special Topics in Global Studies" + }, + { + "name": "GBST 3010", + "title": "Special Topics in Global Security" + }, + { + "name": "GBST 3020", + "title": "Special Topics in Global Economy" + }, + { + "name": "GBST 3030", + "title": "Special Topics in Global Cultures" + }, + { + "name": "GBST 3082", + "title": "Independent Study" + }, + { + "name": "GBST 3083", + "title": "Directed Readings" + }, + { + "name": "GBST 3085", + "title": "Internship" + }, + { + "name": "GBST 3089", + "title": "Fieldwork" + }, + { + "name": "GBST 3900", + "title": "Honors Special Topics" + }, + { + "name": "GBST 4096", + "title": "Capstone Seminar in Global Studies" + }, + { + "name": "GBST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GDC 8001", + "title": "Seminar in Media, Communication and Development" + }, + { + "name": "GDC 8002", + "title": "Communication for Social Change Project Design" + }, + { + "name": "GDC 8003", + "title": "Research Approaches in Communication, Development and Social Change" + }, + { + "name": "GDC 8089", + "title": "Field Experience" + }, + { + "name": "ENDG 8111", + "title": "Pain in Dentistry: Diagnosis and Control" + }, + { + "name": "ENDG 8112", + "title": "Pulp Biology I" + }, + { + "name": "ENDG 8113", + "title": "Periapical Biology I" + }, + { + "name": "ENDG 8114", + "title": "Biologic Basis of Disease" + }, + { + "name": "ENDG 8115", + "title": "Current Clinical Concepts" + }, + { + "name": "ENDG 8116", + "title": "Endodontic Microbiology/Immunology" + }, + { + "name": "ENDG 8117", + "title": "Systemic Diseases" + }, + { + "name": "ENDG 8118", + "title": "Endodontics Surgery" + }, + { + "name": "ENDG 8119", + "title": "Teaching for Sophomore Preclinical Lab" + }, + { + "name": "ENDG 8120", + "title": "Clinical Seminar in Endodontology" + }, + { + "name": "ENDG 8122", + "title": "Dental Traumatology" + }, + { + "name": "ENDG 8123", + "title": "Fundamental Methods and Materials" + }, + { + "name": "ENDG 8130", + "title": "Current Endodontics Literature Review" + }, + { + "name": "ENDG 8140", + "title": "Classical Endodontics Literature Review" + }, + { + "name": "ENDG 8212", + "title": "Pulp Biology II" + }, + { + "name": "ENDG 8213", + "title": "Periapical Biology II" + }, + { + "name": "ENDG 9185", + "title": "Emergency Endodontics Clinic" + }, + { + "name": "ENDG 9285", + "title": "Endodontics Clinic" + }, + { + "name": "GAD 0822", + "title": "Human Behavior and the Photographic Image" + }, + { + "name": "GAD 2001", + "title": "Graphic Design" + }, + { + "name": "GAD 2002", + "title": "Graphic Design" + }, + { + "name": "GAD 2021", + "title": "Computers for Design" + }, + { + "name": "GAD 2071", + "title": "Mac Design Programs I" + }, + { + "name": "GAD 2073", + "title": "Introduction to Web Design" + }, + { + "name": "GAD 2075", + "title": "Communication Through Graphic Design" + }, + { + "name": "GAD 2076", + "title": "Introduction to Web Programming and Production" + }, + { + "name": "GAD 2077", + "title": "Introduction to Illustration" + }, + { + "name": "GAD 2078", + "title": "The Art of Infographics" + }, + { + "name": "GAD 2079", + "title": "Mobile Apps: Design/Prototype" + }, + { + "name": "GAD 2401", + "title": "Introduction to Photography (Online Digital Course)" + }, + { + "name": "GAD 2441", + "title": "Photo I: Digital" + }, + { + "name": "GAD 2451", + "title": "Photo I: Digital" + }, + { + "name": "GAD 2461", + "title": "Digital Imaging" + }, + { + "name": "GAD 2701", + "title": "Survey of Printmaking Techniques" + }, + { + "name": "GAD 2702", + "title": "Survey of Printmaking Techniques" + }, + { + "name": "GAD 2703", + "title": "Book Structures" + }, + { + "name": "GAD 2704", + "title": "Book Structures" + }, + { + "name": "GAD 2711", + "title": "Serigraphy" + }, + { + "name": "GAD 2731", + "title": "Etching" + }, + { + "name": "GAD 2741", + "title": "Intaglio Printmaking" + }, + { + "name": "GAD 2751", + "title": "Lithography" + }, + { + "name": "GAD 2761", + "title": "Lithography" + }, + { + "name": "GAD 2961", + "title": "Honors Digital Imaging: Seeing Photographically" + }, + { + "name": "GAD 3001", + "title": "Advanced Graphic Design" + }, + { + "name": "GAD 3002", + "title": "Advanced Graphic Design" + }, + { + "name": "GAD 3010", + "title": "Special Topics" + }, + { + "name": "GAD 3011", + "title": "Typography" + }, + { + "name": "GAD 3012", + "title": "Typographic Principles" + }, + { + "name": "GAD 3013", + "title": "Advanced Typography" + }, + { + "name": "GAD 3015", + "title": "Advanced Typography" + }, + { + "name": "GAD 3021", + "title": "Intermediate Computer Graphics" + }, + { + "name": "GAD 3023", + "title": "Interactive Design" + }, + { + "name": "GAD 3025", + "title": "Interactive Design" + }, + { + "name": "GAD 3027", + "title": "Digital Narratives" + }, + { + "name": "GAD 3029", + "title": "Programming and Production for Web Sites" + }, + { + "name": "GAD 3031", + "title": "Illustration" + }, + { + "name": "GAD 3033", + "title": "Illustration" + }, + { + "name": "GAD 3041", + "title": "Advertising Design" + }, + { + "name": "GAD 3045", + "title": "Introduction to Visual Communication" + }, + { + "name": "GAD 3053", + "title": "Art Careers Promotion" + }, + { + "name": "GAD 3096", + "title": "The Business of Design" + }, + { + "name": "GAD 3101", + "title": "Collaborative Design Workshop in Rome" + }, + { + "name": "GAD 3111", + "title": "Graphic Design Workshop in Japan" + }, + { + "name": "GAD 3123", + "title": "Introduction to Interactive" + }, + { + "name": "GAD 3182", + "title": "Independent Study" + }, + { + "name": "GAD 3185", + "title": "Field Internship" + }, + { + "name": "GAD 3282", + "title": "Independent Study" + }, + { + "name": "GAD 3400", + "title": "Special Topics in Photography" + }, + { + "name": "GAD 3401", + "title": "Color Photography I" + }, + { + "name": "GAD 3402", + "title": "View Camera" + }, + { + "name": "GAD 3411", + "title": "Digital Photography" + }, + { + "name": "GAD 3412", + "title": "Darkroom Photography" + }, + { + "name": "GAD 3413", + "title": "Photographic Lighting" + }, + { + "name": "GAD 3414", + "title": "Darkroom Photography" + }, + { + "name": "GAD 3421", + "title": "Digital Projects" + }, + { + "name": "GAD 3422", + "title": "Contemporary Photography" + }, + { + "name": "GAD 3431", + "title": "Color Photography I" + }, + { + "name": "GAD 3432", + "title": "Color Photography II" + }, + { + "name": "GAD 3441", + "title": "Advanced Photo Workshop" + }, + { + "name": "GAD 3451", + "title": "Advanced Photography Workshop" + }, + { + "name": "GAD 3461", + "title": "Photo Process Workshop" + }, + { + "name": "GAD 3471", + "title": "Photo Process Workshop" + }, + { + "name": "GAD 3711", + "title": "Advanced Serigraphy" + }, + { + "name": "GAD 3731", + "title": "Advanced Etching" + }, + { + "name": "GAD 3751", + "title": "Advanced Lithography" + }, + { + "name": "GAD 3811", + "title": "Printmaking Workshop" + }, + { + "name": "GAD 3821", + "title": "Printmaking Workshop" + }, + { + "name": "GAD 3831", + "title": "Relief and Monoprint Workshop" + }, + { + "name": "GAD 3841", + "title": "Color Print Workshop" + }, + { + "name": "GAD 3896", + "title": "Art Career Workshop" + }, + { + "name": "GAD 4000", + "title": "Senior Design: Special Topics" + }, + { + "name": "GAD 4001", + "title": "Senior Graphic Design: Senior Design Workshop" + }, + { + "name": "GAD 4002", + "title": "Senior Graphic Design: Hybrid Design" + }, + { + "name": "GAD 4003", + "title": "Senior Graphic Design: Art Direction" + }, + { + "name": "GAD 4004", + "title": "Senior Graphic Design: Packaging" + }, + { + "name": "GAD 4005", + "title": "Senior Graphic Design: Publishing" + }, + { + "name": "GAD 4006", + "title": "Senior Graphic Design: Brand Identity" + }, + { + "name": "GAD 4007", + "title": "Senior Interactive Design" + }, + { + "name": "GAD 4008", + "title": "Senior Graphic Design: Projects in Authorship" + }, + { + "name": "GAD 4009", + "title": "Senior Graphic Design: Projects in Authorship" + }, + { + "name": "GAD 4010", + "title": "Senior Design: Special Topics" + }, + { + "name": "GAD 4011", + "title": "Senior Graphic Design: Design for the Public Good" + }, + { + "name": "GAD 4111", + "title": "Senior Illustration" + }, + { + "name": "GAD 4112", + "title": "Senior Illustration" + }, + { + "name": "GAD 4113", + "title": "Senior Illustration Portfolio" + }, + { + "name": "GAD 4196", + "title": "Senior Portfolio" + }, + { + "name": "GAD 4441", + "title": "Senior Photography" + }, + { + "name": "GAD 4496", + "title": "Senior Seminar in Photography" + }, + { + "name": "GAD 4511", + "title": "Senior Projects Workshop/Seminar" + }, + { + "name": "GAD 5000", + "title": "Graduate Design: Special Topics" + }, + { + "name": "GAD 5001", + "title": "Graduate Design: Design Workshop" + }, + { + "name": "GAD 5002", + "title": "Graduate Design: Hybrid Design" + }, + { + "name": "GAD 5003", + "title": "Graduate Design: Art Direction" + }, + { + "name": "GAD 5004", + "title": "Graduate Design: Packaging" + }, + { + "name": "GAD 5005", + "title": "Graduate Design: Publishing" + }, + { + "name": "GAD 5006", + "title": "Graduate Design: Corporate" + }, + { + "name": "GAD 5007", + "title": "Graduate Design: Interactive" + }, + { + "name": "GAD 5008", + "title": "Graduate Design: Authorship" + }, + { + "name": "GAD 5010", + "title": "Graduate Design: Special Topics" + }, + { + "name": "GAD 5011", + "title": "Graduate Design: Design for the Public Good" + }, + { + "name": "GAD 5013", + "title": "Advanced Typography" + }, + { + "name": "GAD 5015", + "title": "Advanced Typography" + }, + { + "name": "GAD 5023", + "title": "Interactive Design" + }, + { + "name": "GAD 5025", + "title": "Interactive Design" + }, + { + "name": "GAD 5027", + "title": "Digital Narratives" + }, + { + "name": "GAD 5029", + "title": "Programming and Production for Web Sites" + }, + { + "name": "GAD 5053", + "title": "Art Careers Promotion" + }, + { + "name": "GAD 5073", + "title": "Introduction to Web Design" + }, + { + "name": "GAD 5078", + "title": "The Art of Infographics" + }, + { + "name": "GAD 5111", + "title": "Graduate Design: Illustration" + }, + { + "name": "GAD 5182", + "title": "Independent Study" + }, + { + "name": "GAD 8001", + "title": "Visual Design Graduate Seminar" + }, + { + "name": "GAD 8002", + "title": "Visual Design Graduate Seminar II" + }, + { + "name": "GAD 8083", + "title": "Graphic Design Graduate Projects" + }, + { + "name": "GAD 8084", + "title": "Graphic Design Graduate Projects II" + }, + { + "name": "GAD 8095", + "title": "Visual Design Thesis" + }, + { + "name": "GAD 8096", + "title": "Visual Design Thesis II" + }, + { + "name": "GAD 8111", + "title": "Graduate Seminar in Printmaking" + }, + { + "name": "GAD 8112", + "title": "Graduate Seminar in Printmaking II" + }, + { + "name": "GAD 8183", + "title": "Graduate Projects in Printmaking" + }, + { + "name": "GAD 8184", + "title": "Graduate Projects in Printmaking II" + }, + { + "name": "GAD 8189", + "title": "Collaborative Design Workshop in Rome" + }, + { + "name": "GAD 8201", + "title": "Digital Projects" + }, + { + "name": "GAD 8211", + "title": "Graduate Seminar in Photography" + }, + { + "name": "GAD 8212", + "title": "Graduate Seminar in Photography II" + }, + { + "name": "GAD 8222", + "title": "Contemporary Photography" + }, + { + "name": "GAD 8253", + "title": "Graduate Photo Process Workshop" + }, + { + "name": "GAD 8255", + "title": "Graduate Photo Workshop: Digital Photography" + }, + { + "name": "GAD 8256", + "title": "Graduate Advanced Photo Workshop" + }, + { + "name": "GAD 8283", + "title": "Graduate Projects in Photography I" + }, + { + "name": "GAD 8284", + "title": "Graduate Projects in Photography II" + }, + { + "name": "GAD 8413", + "title": "Photographic Lighting" + }, + { + "name": "GAD 9189", + "title": "Design Workshop in Japan" + }, + { + "name": "GAD E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GAD T000", + "title": "Elective" + }, + { + "name": "GRKA 1001", + "title": "Ancient Greek 1" + }, + { + "name": "GRKA 1002", + "title": "Ancient Greek 2" + }, + { + "name": "GRKA 1003", + "title": "Intensive Ancient Greek" + }, + { + "name": "GRKA 2001", + "title": "Ancient Greek 3" + }, + { + "name": "GRKA 2002", + "title": "Ancient Greek 4" + }, + { + "name": "GRKA 3002", + "title": "Readings in Greek Literature II" + }, + { + "name": "GRKA 3096", + "title": "Readings in Greek Literature I" + }, + { + "name": "GRKA 4000", + "title": "Special Topics" + }, + { + "name": "GRKA 4001", + "title": "Thucydides" + }, + { + "name": "GRKA 4002", + "title": "Greek Dramatists" + }, + { + "name": "GRKA 4003", + "title": "Greek Historians" + }, + { + "name": "GRKA 4004", + "title": "Greek Philosophers" + }, + { + "name": "GRKA 4005", + "title": "Greek Orators" + }, + { + "name": "GRKA 4082", + "title": "Independent Study" + }, + { + "name": "GRKA 4182", + "title": "Independent Study" + }, + { + "name": "GRKA E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GRKA F000", + "title": "* See Statement Below" + }, + { + "name": "GRKA L000", + "title": "Elective LL" + }, + { + "name": "GRKA P000", + "title": "Elective P" + }, + { + "name": "GRKA U000", + "title": "Elective UL" + }, + { + "name": "GRC 0803", + "title": "The Art of Sacred Space" + }, + { + "name": "GRC 0804", + "title": "Race in the Ancient Mediterranean" + }, + { + "name": "GRC 0811", + "title": "Greek Theater & Society" + }, + { + "name": "GRC 0829", + "title": "Ancient War Games: Sport and Spectacle in Greece and Rome" + }, + { + "name": "GRC 0903", + "title": "Honors Art of Sacred Space" + }, + { + "name": "GRC 0904", + "title": "Honors Race in the Ancient Mediterranean" + }, + { + "name": "GRC 0911", + "title": "Honors Greek Theater & Society" + }, + { + "name": "GRC 0929", + "title": "Honors Ancient War Games: Sport and Spectacle in Greece and Rome" + }, + { + "name": "GRC 1004", + "title": "Introduction to the Ancient City" + }, + { + "name": "GRC 2000", + "title": "Special Topics" + }, + { + "name": "GRC 2001", + "title": "Slavery in Antiquity" + }, + { + "name": "GRC 2002", + "title": "Gender in Classical Antiquity" + }, + { + "name": "GRC 2003", + "title": "Race: Ancient and Modern" + }, + { + "name": "GRC 2004", + "title": "The City of Rome" + }, + { + "name": "GRC 2011", + "title": "Classical Greek and Roman Mythology" + }, + { + "name": "GRC 2101", + "title": "The Greeks" + }, + { + "name": "GRC 2102", + "title": "The Romans" + }, + { + "name": "GRC 2900", + "title": "Honors Special Topics in Classical Culture" + }, + { + "name": "GRC 2902", + "title": "Honors Gender in Classical Antiquity" + }, + { + "name": "GRC 2911", + "title": "Honors Classical Greek and Roman Mythology" + }, + { + "name": "GRC 3000", + "title": "Topics in Classical Culture" + }, + { + "name": "GRC 3002", + "title": "Ancient City: Augustan Rome" + }, + { + "name": "GRC 3003", + "title": "Ancient City: Byzantium" + }, + { + "name": "GRC 3096", + "title": "Romans and Their Literature" + }, + { + "name": "GRC 3296", + "title": "Comparative Mythology" + }, + { + "name": "GRC 3311", + "title": "Ancient Greek Historians" + }, + { + "name": "GRC 3312", + "title": "Ancient Roman Historians" + }, + { + "name": "GRC 3396", + "title": "Classical Epic" + }, + { + "name": "GRC 3496", + "title": "Writing Seminar" + }, + { + "name": "GRC 3596", + "title": "Ancient City: Periclean Athens" + }, + { + "name": "GRC 3696", + "title": "Ancient City: Hellenistic Alexandria" + }, + { + "name": "GRC 3796", + "title": "Ancient City: Augustan Rome" + }, + { + "name": "GRC 3897", + "title": "Ancient City: Jerusalem" + }, + { + "name": "GRC 3900", + "title": "Honors Topics in Classical Culture" + }, + { + "name": "GRC 3996", + "title": "Honors Comparative Mythology" + }, + { + "name": "GRC 4000", + "title": "Special Topics" + }, + { + "name": "GRC 4082", + "title": "Independent Study" + }, + { + "name": "GRC 4182", + "title": "Independent Study" + }, + { + "name": "GRC 4282", + "title": "Independent Study" + }, + { + "name": "GRC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "GRC F000", + "title": "* See Statement Below" + }, + { + "name": "GRC L000", + "title": "Elective LL" + }, + { + "name": "GRC P000", + "title": "Elective P" + }, + { + "name": "GRC U000", + "title": "Elective UL" + }, + { + "name": "HIM 1005", + "title": "International Classification of Disease, 10 Revision, CM & PCS Coding Systems for Experienced Coders" + }, + { + "name": "HIM 1055", + "title": "IT Applications for Health" + }, + { + "name": "HIM 1101", + "title": "Medical Terminology" + }, + { + "name": "HIM 2203", + "title": "U.S. Health Care System" + }, + { + "name": "HIM 2215", + "title": "Health Information Management IT Fundamentals" + }, + { + "name": "HIM 3020", + "title": "Special Topics in Health Information Management" + }, + { + "name": "HIM 3082", + "title": "Independent Study in Health Information Management" + }, + { + "name": "HIM 3101", + "title": "Health Record Documentation" + }, + { + "name": "HIM 3106", + "title": "Pathophysiology" + }, + { + "name": "HIM 3107", + "title": "Health Information Management Leadership and Strategic Management" + }, + { + "name": "HIM 3111", + "title": "Statistics and Research in Health Care" + }, + { + "name": "HIM 3113", + "title": "Healthcare Database Design and Development" + }, + { + "name": "HIM 3203", + "title": "Electronic Health Record Systems" + }, + { + "name": "HIM 3208", + "title": "International Classification of Diseases" + }, + { + "name": "HIM 3216", + "title": "Clinical Procedures and Pharmacology" + }, + { + "name": "HIM 3271", + "title": "Professional Development" + }, + { + "name": "HIM 3297", + "title": "Health Information Management Human Resource Management" + }, + { + "name": "HIM 4101", + "title": "Health Informatics: Infrastructure and Standards" + }, + { + "name": "HIM 4102", + "title": "Legal Aspects of Health Information Management" + }, + { + "name": "HIM 4104", + "title": "Health Information Management Operations Management" + }, + { + "name": "HIM 4105", + "title": "Current Procedural Terminology Coding" + }, + { + "name": "HIM 4113", + "title": "Healthcare Reimbursement Systems" + }, + { + "name": "HIM 4121", + "title": "Healthcare Data Analytics" + }, + { + "name": "HIM 4202", + "title": "Health Information Management Project Management" + }, + { + "name": "HIM 4206", + "title": "Intermediate Coding" + }, + { + "name": "HIM 4207", + "title": "Healthcare Quality Improvement" + }, + { + "name": "HIM 4286", + "title": "Management Internship" + }, + { + "name": "HIM 4298", + "title": "Health Information Management Senior Seminar" + }, + { + "name": "HIM 5101", + "title": "Fundamentals of Health Informatics" + }, + { + "name": "HIM 5106", + "title": "Technology for Population Health" + }, + { + "name": "HIM 5111", + "title": "Technology for Healthcare Financial Management" + }, + { + "name": "HIM 5112", + "title": "Health Information Systems: Design and Decision Making" + }, + { + "name": "HIM 5113", + "title": "Database Administration for Health Informatics Professionals" + }, + { + "name": "HIM 5114", + "title": "Health Informatics Project Management" + }, + { + "name": "HIM 5127", + "title": "Privacy and Security: Protecting Healthcare Data" + }, + { + "name": "HIM 5128", + "title": "Health Data: Standards and Interoperability" + }, + { + "name": "HIM 5129", + "title": "Health Data Analysis" + }, + { + "name": "HIM 5190", + "title": "Special Topics" + }, + { + "name": "HIM 9082", + "title": "Independent Study in Health Informatics" + }, + { + "name": "HIM 9995", + "title": "Capstone Project" + }, + { + "name": "HIM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HIM T000", + "title": "Elective" + }, + { + "name": "HPM 2202", + "title": "Man-Made Disasters: Radiological, Chemical & Biological Terrorism" + }, + { + "name": "HPM 2208", + "title": "Natural Disasters: Response and Recovery" + }, + { + "name": "HPM 2209", + "title": "Violence and Injury Prevention" + }, + { + "name": "HPM 2214", + "title": "Politics and Payments in US Healthcare System" + }, + { + "name": "HPM 3207", + "title": "Principles of Emergency Management: A Public Health Perspective" + }, + { + "name": "HPM 3208", + "title": "History of U.S. Public Health" + }, + { + "name": "HPM 3215", + "title": "Special Populations: Strategic Community Outreach" + }, + { + "name": "HPM 3382", + "title": "Independent Study in Public Health" + }, + { + "name": "HPM 5005", + "title": "International Health Studies Abroad" + }, + { + "name": "HPM 5006", + "title": "Political and Economic Aspects of Health" + }, + { + "name": "HPM 5007", + "title": "Principles of Emergency Management" + }, + { + "name": "HPM 5008", + "title": "Seminar in Global Health" + }, + { + "name": "HPM 5014", + "title": "Leadership and Management in Non-Profit Organizations" + }, + { + "name": "HPM 5016", + "title": "Public Health Advocacy" + }, + { + "name": "HPM 5107", + "title": "Forced Migration and Refugee Health" + }, + { + "name": "HPM 5111", + "title": "Community Outreach in Public Health" + }, + { + "name": "HPM 5122", + "title": "Healthcare Quality and Safety" + }, + { + "name": "HPM 5190", + "title": "Special Topics" + }, + { + "name": "HPM 5202", + "title": "Man-Made Disasters: Radiological, Chemical and Biological Terrorism" + }, + { + "name": "HPM 5208", + "title": "History of U.S. Public Health" + }, + { + "name": "HPM 5500", + "title": "Seminar in Current Issues in Public Health" + }, + { + "name": "HPM 8002", + "title": "Research Seminar in Public Health" + }, + { + "name": "HPM 8003", + "title": "Political-Economic Aspects of Public Health" + }, + { + "name": "HPM 8005", + "title": "Theor Hlth Policy Making" + }, + { + "name": "HPM 8008", + "title": "Health Economics" + }, + { + "name": "HPM 8013", + "title": "Research Methods in Health Policy" + }, + { + "name": "HPM 8014", + "title": "Comparative Health Policy" + }, + { + "name": "HPM 8015", + "title": "Public Health Policy and Legal Issues" + }, + { + "name": "HPM 8112", + "title": "Public Health Program Evaluation" + }, + { + "name": "HPM 9083", + "title": "Readings and Conference in Public Health" + }, + { + "name": "HPM 9189", + "title": "MPH Capstone Seminar" + }, + { + "name": "HPM 9289", + "title": "MPH Fieldwork I" + }, + { + "name": "HPM 9389", + "title": "MPH Fieldwork II" + }, + { + "name": "HPM 9991", + "title": "Public Health Research Project" + }, + { + "name": "HPM 9994", + "title": "Preliminary Examinations" + }, + { + "name": "HPM 9996", + "title": "Masters Res in Pub Hlth" + }, + { + "name": "HPM 9998", + "title": "Dissertation Proposal Research" + }, + { + "name": "HPM 9999", + "title": "Dissertation Research" + }, + { + "name": "HPM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HRPR 1001", + "title": "Public Health: The Way We Live, Work and Play" + }, + { + "name": "HRPR 1005", + "title": "Introduction to Mindfulness" + }, + { + "name": "HRPR 1101", + "title": "Contemporary Aspects of Disability" + }, + { + "name": "HRPR 2104", + "title": "Cultural Competency in Health and Healthcare" + }, + { + "name": "HRPR 2105", + "title": "Introduction to the Narrative in Patient-Centered Health Care" + }, + { + "name": "HRPR 2106", + "title": "An Introduction to Holistic Practices and Integrative Medicine" + }, + { + "name": "HRPR 5001", + "title": "Current and Emerging Issues in Public Health and Health Professions" + }, + { + "name": "HRPR 5005", + "title": "Introduction to Mindfulness" + }, + { + "name": "HRPR 5200", + "title": "Clin Pharm" + }, + { + "name": "HRPR 5999", + "title": "Research Experience in Health Professions" + }, + { + "name": "HRPR 8001", + "title": "Introduction to Health Outcomes Measurement Science" + }, + { + "name": "HRPR 8002", + "title": "Qualitative Methods in Health Outcomes Measurement" + }, + { + "name": "HRPR 8003", + "title": "Quantitative Methods in Health Outcomes Measurement Science" + }, + { + "name": "HRPR 8101", + "title": "Bioethics and Ethical Decision-Making" + }, + { + "name": "HRPR 8102", + "title": "Cultural Competence in Health Studies" + }, + { + "name": "HRPR 8103", + "title": "Health Across the Lifespan" + }, + { + "name": "HRPR 8104", + "title": "Systems Theory and Change Theory" + }, + { + "name": "HRPR 8203", + "title": "Systematic Rev Hlth Ecol" + }, + { + "name": "HRPR 8985", + "title": "Teaching in Higher Education: Health Professions" + }, + { + "name": "HRPR 8987", + "title": "Teaching in Higher Education Practicum" + }, + { + "name": "HRPR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HCM 3501", + "title": "Introduction to Health Services Systems" + }, + { + "name": "HCM 3502", + "title": "Healthcare Financing and Information Technology" + }, + { + "name": "HCM 3580", + "title": "Special Topics - Healthcare Management" + }, + { + "name": "HCM 4596", + "title": "Healthcare Quality and Risk Management" + }, + { + "name": "HCM 5101", + "title": "Health Systems Organization and Development" + }, + { + "name": "HCM 5102", + "title": "Healthcare Organizational Leadership and Strategy" + }, + { + "name": "HCM 5103", + "title": "Financial Management of Healthcare Organizations" + }, + { + "name": "HCM 5104", + "title": "Healthcare Law and Information Technology" + }, + { + "name": "HCM 5105", + "title": "Healthcare Info Systems" + }, + { + "name": "HCM 5106", + "title": "Advanced Hlth Econ & Fin" + }, + { + "name": "HCM 5170", + "title": "Special Topics" + }, + { + "name": "HCM 5180", + "title": "Special Topics" + }, + { + "name": "HCM 5182", + "title": "Independent Study" + }, + { + "name": "HCM 5185", + "title": "Sum Admin Res Sem" + }, + { + "name": "HCM 5190", + "title": "Special Topics-HCM" + }, + { + "name": "HCM 5282", + "title": "Independent Study" + }, + { + "name": "HCM 5601", + "title": "The Organizational Structure of the US Health System" + }, + { + "name": "HCM 5602", + "title": "Market Forces, Regulation and Policy in the US Health System" + }, + { + "name": "HCM 5603", + "title": "Population Health Management" + }, + { + "name": "HCM 5604", + "title": "Analytic Foundations of Health and Healthcare" + }, + { + "name": "HCM 5605", + "title": "Healthcare Market Structure and Strategy" + }, + { + "name": "HCM 5606", + "title": "Financial Analysis and Managerial Accounting for Healthcare Organizations" + }, + { + "name": "HCM 5607", + "title": "Corporate Finance and Strategy in Healthcare" + }, + { + "name": "HCM 5621", + "title": "Healthcare Analytics" + }, + { + "name": "HCM 5622", + "title": "International Health Systems" + }, + { + "name": "HCM 5623", + "title": "Healthcare Risk Management and Patient Safety" + }, + { + "name": "HCM 5624", + "title": "Pharmaceutical Trends, Issues and Policies" + }, + { + "name": "HCM 5625", + "title": "Strategic Context of the Pharmaceutical Industry" + }, + { + "name": "HCM 5651", + "title": "Healthcare Leadership and Strategy" + }, + { + "name": "HCM 5882", + "title": "Independent Study" + }, + { + "name": "HCM 5890", + "title": "Special Topics" + }, + { + "name": "HCM 9090", + "title": "Spec Topic Hlthcar Mgt" + }, + { + "name": "HCM 9183", + "title": "Directed Study-Hlth Adm" + }, + { + "name": "HCM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HEBR 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "HEBR 0871", + "title": "Arts in Cultural Context" + }, + { + "name": "HEBR 1001", + "title": "Elements I" + }, + { + "name": "HEBR 1002", + "title": "Elements II" + }, + { + "name": "HEBR 2001", + "title": "Intermediate I" + }, + { + "name": "HEBR 2002", + "title": "Intermediate II" + }, + { + "name": "HEBR 2447", + "title": "Kabbalah and Mysticism" + }, + { + "name": "HEBR 2779", + "title": "Love Themes in Hebrew Literature" + }, + { + "name": "HEBR 2797", + "title": "Jewish Humor Past and Present" + }, + { + "name": "HEBR 3002", + "title": "Advanced Hebrew Readings II" + }, + { + "name": "HEBR 3082", + "title": "Independent Study" + }, + { + "name": "HEBR 3098", + "title": "Advanced Hebrew Readings I" + }, + { + "name": "HEBR 3711", + "title": "Israelis and Palestinians" + }, + { + "name": "HEBR 3720", + "title": "Topics in Hebrew Culture" + }, + { + "name": "HEBR 3797", + "title": "Literature and Art of the Holocaust" + }, + { + "name": "HEBR 3798", + "title": "Writing Seminar I" + }, + { + "name": "HEBR 4082", + "title": "Independent Study" + }, + { + "name": "HEBR 4382", + "title": "Independent Study" + }, + { + "name": "HEBR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HEBR F000", + "title": "* See Statement Below" + }, + { + "name": "HEBR L000", + "title": "Elective LL" + }, + { + "name": "HEBR P000", + "title": "Elective P" + }, + { + "name": "HEBR U000", + "title": "Elective UL" + }, + { + "name": "HIED 5101", + "title": "Introduction to Higher Education" + }, + { + "name": "HIED 5102", + "title": "Administration of Higher Education" + }, + { + "name": "HIED 5103", + "title": "Access and Equity in Higher Education" + }, + { + "name": "HIED 5104", + "title": "College Students and Development Theory" + }, + { + "name": "HIED 5201", + "title": "Diversity Issues in Higher Education" + }, + { + "name": "HIED 5202", + "title": "Higher Education Economics and Finance" + }, + { + "name": "HIED 5203", + "title": "Getting into College: Strategic Enrollment Management" + }, + { + "name": "HIED 5301", + "title": "Planning and Assessment in Higher Education" + }, + { + "name": "HIED 5401", + "title": "Student Affairs in Higher Education" + }, + { + "name": "HIED 5502", + "title": "Digital Education Leadership" + }, + { + "name": "HIED 5801", + "title": "Gender Issues in Education" + }, + { + "name": "HIED 5802", + "title": "Leadership in Higher Education" + }, + { + "name": "HIED 5803", + "title": "Law and Policy in Higher Education" + }, + { + "name": "HIED 5804", + "title": "The Community College" + }, + { + "name": "HIED 8093", + "title": "Advanced Higher Education Research Seminar" + }, + { + "name": "HIED 8101", + "title": "Advanced Seminar on Higher Education Administration" + }, + { + "name": "HIED 8102", + "title": "Higher Education Economics and Finance" + }, + { + "name": "HIED 8103", + "title": "Equity in Higher Education Policy and Practice" + }, + { + "name": "HIED 8104", + "title": "Seminar on Theory in Higher Education and Leadership" + }, + { + "name": "HIED 8262", + "title": "Advanced Practice-Based Qualitative Research in Higher Education" + }, + { + "name": "HIED 9995", + "title": "Master's Capstone in Higher Education" + }, + { + "name": "HIN 1001", + "title": "Hindi Elements I" + }, + { + "name": "HIN 1002", + "title": "Hindi Elements II" + }, + { + "name": "HIN 2001", + "title": "Hindi Intermediate I" + }, + { + "name": "HIN 2002", + "title": "Hindi Intermediate II" + }, + { + "name": "HIN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HIST 0824", + "title": "Gender and World Societies" + }, + { + "name": "HIST 0829", + "title": "The History & Significance of Race in America" + }, + { + "name": "HIST 0831", + "title": "Immigration and the American Dream" + }, + { + "name": "HIST 0832", + "title": "Politics of Identity in America" + }, + { + "name": "HIST 0834", + "title": "Representing Race" + }, + { + "name": "HIST 0847", + "title": "American Military Culture" + }, + { + "name": "HIST 0848", + "title": "American Revolutions" + }, + { + "name": "HIST 0849", + "title": "Dissent in America" + }, + { + "name": "HIST 0859", + "title": "The Making of American Society: Melting Pot or Culture Wars?" + }, + { + "name": "HIST 0861", + "title": "Global Slavery" + }, + { + "name": "HIST 0862", + "title": "Development & Globalization" + }, + { + "name": "HIST 0864", + "title": "War and Peace" + }, + { + "name": "HIST 0865", + "title": "The Global Crisis: Power, Politics and the Making of Our Times" + }, + { + "name": "HIST 0867", + "title": "Founding Philadelphia" + }, + { + "name": "HIST 0871", + "title": "Turning Points in Human History: The Ancient World" + }, + { + "name": "HIST 0872", + "title": "Turning Points in Human History: The Modern World" + }, + { + "name": "HIST 0874", + "title": "Confronting Empire: Voices of Resistance" + }, + { + "name": "HIST 0876", + "title": "Religion in Philadelphia" + }, + { + "name": "HIST 0929", + "title": "Honors: The History & Significance of Race in America" + }, + { + "name": "HIST 0949", + "title": "Honors Dissent in America" + }, + { + "name": "HIST 0964", + "title": "Honors War and Peace" + }, + { + "name": "HIST 0976", + "title": "Honors Religion in Philadelphia" + }, + { + "name": "HIST 1001", + "title": "History of Philadelphia" + }, + { + "name": "HIST 1002", + "title": "America in the Age of Lincoln" + }, + { + "name": "HIST 1003", + "title": "History of the American West" + }, + { + "name": "HIST 1004", + "title": "United States at War" + }, + { + "name": "HIST 1005", + "title": "Youth, Romance, and Sex in post-WWII America" + }, + { + "name": "HIST 1006", + "title": "History of Sex and Gender in Film" + }, + { + "name": "HIST 1007", + "title": "Popular Culture in 20th Century America" + }, + { + "name": "HIST 1008", + "title": "The Sixties: The American Experience" + }, + { + "name": "HIST 1011", + "title": "Modern U.S. History Through Film" + }, + { + "name": "HIST 1012", + "title": "Professional Development for History Majors" + }, + { + "name": "HIST 1022", + "title": "Latin American Social Struggles" + }, + { + "name": "HIST 1041", + "title": "Before the Da Vinci Code: The Holy Grail" + }, + { + "name": "HIST 1043", + "title": "Living Royally: The World of Europe's Kings and Queens" + }, + { + "name": "HIST 1045", + "title": "Sex in 20th Century Europe: Panic and Liberation" + }, + { + "name": "HIST 1051", + "title": "Che Guevara and the Question of Revolution" + }, + { + "name": "HIST 1061", + "title": "The United States and the Middle East, 1990-Present" + }, + { + "name": "HIST 1062", + "title": "Power and Resistance in the Age of Imperialism" + }, + { + "name": "HIST 1101", + "title": "U.S. History to 1877" + }, + { + "name": "HIST 1102", + "title": "U.S. History since 1877" + }, + { + "name": "HIST 1103", + "title": "Race and Ethnicity in American History" + }, + { + "name": "HIST 1104", + "title": "American Empire" + }, + { + "name": "HIST 1171", + "title": "U.S. History to 1877" + }, + { + "name": "HIST 1202", + "title": "U.S. History Since 1877" + }, + { + "name": "HIST 1301", + "title": "Modern Europe" + }, + { + "name": "HIST 1501", + "title": "Third World History" + }, + { + "name": "HIST 1652", + "title": "Modern Asia" + }, + { + "name": "HIST 1701", + "title": "World History Ancient" + }, + { + "name": "HIST 1702", + "title": "World History Modern" + }, + { + "name": "HIST 1705", + "title": "War and Society" + }, + { + "name": "HIST 1708", + "title": "Gender and History" + }, + { + "name": "HIST 1900", + "title": "Honors Special Topics" + }, + { + "name": "HIST 1901", + "title": "Honors U.S. History to 1877" + }, + { + "name": "HIST 1902", + "title": "Honors U.S. History since 1877" + }, + { + "name": "HIST 1903", + "title": "Honors Race and Ethnicity in American History" + }, + { + "name": "HIST 1904", + "title": "Honors War and Society" + }, + { + "name": "HIST 1908", + "title": "Honors Gender and History" + }, + { + "name": "HIST 1980", + "title": "Honors: Special Topics" + }, + { + "name": "HIST 1997", + "title": "Honors World History Ancient" + }, + { + "name": "HIST 2001", + "title": "The Historian's Craft" + }, + { + "name": "HIST 2010", + "title": "Special Topics" + }, + { + "name": "HIST 2102", + "title": "History of Nazi Germany" + }, + { + "name": "HIST 2103", + "title": "African American History to 1865" + }, + { + "name": "HIST 2104", + "title": "African American History 1865-Present" + }, + { + "name": "HIST 2105", + "title": "Race and the U.S. Constitution" + }, + { + "name": "HIST 2106", + "title": "Trials in America" + }, + { + "name": "HIST 2107", + "title": "Asian American History" + }, + { + "name": "HIST 2108", + "title": "Growing Up in America" + }, + { + "name": "HIST 2109", + "title": "Sexuality and Gender in American History" + }, + { + "name": "HIST 2111", + "title": "Recent American History " + }, + { + "name": "HIST 2112", + "title": "Native American History" + }, + { + "name": "HIST 2116", + "title": "Baseball and American History" + }, + { + "name": "HIST 2117", + "title": "History of Global Soccer" + }, + { + "name": "HIST 2118", + "title": "Dissent in America" + }, + { + "name": "HIST 2151", + "title": "Introduction to Public History" + }, + { + "name": "HIST 2152", + "title": "Museum History" + }, + { + "name": "HIST 2153", + "title": "Memory and Commemoration" + }, + { + "name": "HIST 2207", + "title": "Religion in the Modern United States" + }, + { + "name": "HIST 2212", + "title": "History of the American Presidency" + }, + { + "name": "HIST 2213", + "title": "History of the American Economy and American Business" + }, + { + "name": "HIST 2214", + "title": "History of the National Park Service" + }, + { + "name": "HIST 2215", + "title": "Imperiled Promise: An Introduction to Heritage Interpretation in the National Park Service" + }, + { + "name": "HIST 2216", + "title": "U.S. Civil War" + }, + { + "name": "HIST 2217", + "title": "Vietnam War" + }, + { + "name": "HIST 2219", + "title": "Cold War Culture in America" + }, + { + "name": "HIST 2280", + "title": "Topics in American History" + }, + { + "name": "HIST 2301", + "title": "Pre-Modern Europe" + }, + { + "name": "HIST 2303", + "title": "History of Central Europe, 1618-1871" + }, + { + "name": "HIST 2304", + "title": "20th Century Europe: A Continent in Crisis" + }, + { + "name": "HIST 2306", + "title": "Rise of the European Dictators" + }, + { + "name": "HIST 2307", + "title": "Europe Divided and United, 1939-1995" + }, + { + "name": "HIST 2317", + "title": "Central Europe Through Wars and Revolution, 1848-1989" + }, + { + "name": "HIST 2319", + "title": "The Mafia in Modern Italy" + }, + { + "name": "HIST 2353", + "title": "Early Modern Italy - From Columbus to Beccaria" + }, + { + "name": "HIST 2400", + "title": "Special Topics" + }, + { + "name": "HIST 2411", + "title": "Film in European History" + }, + { + "name": "HIST 2415", + "title": "Russian History in Literature and Film" + }, + { + "name": "HIST 2480", + "title": "Topics in European History" + }, + { + "name": "HIST 2501", + "title": "Introduction to East Asia: China" + }, + { + "name": "HIST 2502", + "title": "Introduction to East Asia: Japan" + }, + { + "name": "HIST 2503", + "title": "Introduction to Southeast Asia: Insular" + }, + { + "name": "HIST 2504", + "title": "Introduction to Southeast Asia: Mainland" + }, + { + "name": "HIST 2511", + "title": "Introduction to African History " + }, + { + "name": "HIST 2512", + "title": "Mexican Migration to the United States" + }, + { + "name": "HIST 2513", + "title": "Cold War Africa" + }, + { + "name": "HIST 2514", + "title": "Introduction to Latin America" + }, + { + "name": "HIST 2515", + "title": "Civilization and Modernity in the Caribbean" + }, + { + "name": "HIST 2516", + "title": "Modern Islamic History" + }, + { + "name": "HIST 2517", + "title": "Cuba: War, Hope, and Revolution" + }, + { + "name": "HIST 2518", + "title": "The Ancient Near East" + }, + { + "name": "HIST 2519", + "title": "Pre-Colonial Africa" + }, + { + "name": "HIST 2521", + "title": "Global Terrorism" + }, + { + "name": "HIST 2611", + "title": "Third World Issues through Film " + }, + { + "name": "HIST 2670", + "title": "Topics in African History" + }, + { + "name": "HIST 2680", + "title": "Topics in Asian History" + }, + { + "name": "HIST 2702", + "title": "Imperialism, Race, and Empire" + }, + { + "name": "HIST 2703", + "title": "African Diaspora" + }, + { + "name": "HIST 2705", + "title": "Anti-Semitism/Holocaust/Racism" + }, + { + "name": "HIST 2706", + "title": "Jewish Diaspora " + }, + { + "name": "HIST 2803", + "title": "Soldiers, Wars, and Societies: The British Army" + }, + { + "name": "HIST 2804", + "title": "Peace, Conflict, and Social Change" + }, + { + "name": "HIST 2805", + "title": "Nationalism and Revolution " + }, + { + "name": "HIST 2806", + "title": "Colonial North Africa in European History" + }, + { + "name": "HIST 2807", + "title": "Battleground Cinema" + }, + { + "name": "HIST 2811", + "title": "World War I" + }, + { + "name": "HIST 2812", + "title": "World War II" + }, + { + "name": "HIST 2815", + "title": "Love, Marriage, and Family" + }, + { + "name": "HIST 2816", + "title": "Gender, Class, Nation" + }, + { + "name": "HIST 2817", + "title": "Gender, War, and Society" + }, + { + "name": "HIST 2818", + "title": "American Icons" + }, + { + "name": "HIST 2819", + "title": "Global Connections" + }, + { + "name": "HIST 2870", + "title": "Topics in Women's History" + }, + { + "name": "HIST 2882", + "title": "Independent Study" + }, + { + "name": "HIST 2900", + "title": "Honors Special Topics I" + }, + { + "name": "HIST 2902", + "title": "Honors Nazi Germany" + }, + { + "name": "HIST 2906", + "title": "Honors Trials in America" + }, + { + "name": "HIST 2910", + "title": "Honors Special Topics II" + }, + { + "name": "HIST 2915", + "title": "Honors Russian History in Literature and Film" + }, + { + "name": "HIST 2918", + "title": "Honors American Icons" + }, + { + "name": "HIST 2919", + "title": "Honors Global Connections" + }, + { + "name": "HIST 2920", + "title": "Honors Special Topics" + }, + { + "name": "HIST 2921", + "title": "Honors Global Terrorism" + }, + { + "name": "HIST 2930", + "title": "Honors Special Topics" + }, + { + "name": "HIST 2940", + "title": "Honors Special Topics" + }, + { + "name": "HIST 2970", + "title": "Honors Topics in Latin American History" + }, + { + "name": "HIST 3096", + "title": "Intermediate Writing Seminar" + }, + { + "name": "HIST 3101", + "title": "Colonial America" + }, + { + "name": "HIST 3102", + "title": "American Revolution and Republic, 1754-1789" + }, + { + "name": "HIST 3103", + "title": "The Early United States, 1787-1846" + }, + { + "name": "HIST 3104", + "title": "19th Century America" + }, + { + "name": "HIST 3105", + "title": "20th Century America" + }, + { + "name": "HIST 3107", + "title": "American Cultural History" + }, + { + "name": "HIST 3108", + "title": "Modern American Social History" + }, + { + "name": "HIST 3151", + "title": "Local History" + }, + { + "name": "HIST 3152", + "title": "Material Culture for Historians" + }, + { + "name": "HIST 3201", + "title": "California Dreams, California Nightmares" + }, + { + "name": "HIST 3211", + "title": "Development of the Modern American City" + }, + { + "name": "HIST 3214", + "title": "North American Environmental History" + }, + { + "name": "HIST 3215", + "title": "Historical Roots of Urban Crime " + }, + { + "name": "HIST 3216", + "title": "Media and American Culture, 1706-Present" + }, + { + "name": "HIST 3217", + "title": "African American Church and Black Liberation" + }, + { + "name": "HIST 3221", + "title": "Jewish Experience in America" + }, + { + "name": "HIST 3225", + "title": "Women in U.S. History" + }, + { + "name": "HIST 3228", + "title": "America's Rise to Globalism" + }, + { + "name": "HIST 3229", + "title": "Superpower America" + }, + { + "name": "HIST 3231", + "title": "German Minority Identities: Gendered and Cultural Dimensions (in English)" + }, + { + "name": "HIST 3235", + "title": "Weimar Culture: Race, Gender, Sexuality and Nation (in English)" + }, + { + "name": "HIST 3280", + "title": "Topics in American History" + }, + { + "name": "HIST 3296", + "title": "Intermediate Writing Seminar in American History" + }, + { + "name": "HIST 3311", + "title": "Greek History" + }, + { + "name": "HIST 3312", + "title": "Roman History " + }, + { + "name": "HIST 3315", + "title": "Becoming England: Narrating the Medieval Nation" + }, + { + "name": "HIST 3321", + "title": "Irish History " + }, + { + "name": "HIST 3331", + "title": "History of England" + }, + { + "name": "HIST 3332", + "title": "Historic Britain, 1688-1815" + }, + { + "name": "HIST 3333", + "title": "Modern Britain: Empire, War, Rock and Roll" + }, + { + "name": "HIST 3341", + "title": "French Revolution and Napoleon" + }, + { + "name": "HIST 3342", + "title": "Revolutionary Europe" + }, + { + "name": "HIST 3343", + "title": "Getting Crusaded: Making Europe/Making Orientalism" + }, + { + "name": "HIST 3344", + "title": "Love, Money, War: Medieval Style" + }, + { + "name": "HIST 3351", + "title": "Rome and Italy: Renaissance to the Present" + }, + { + "name": "HIST 3352", + "title": "Roman Archaeology" + }, + { + "name": "HIST 3353", + "title": "Modern Italy - From Napoleon to Hitler" + }, + { + "name": "HIST 3361", + "title": "Early Russian Empire, 1547-1905 " + }, + { + "name": "HIST 3362", + "title": "Russia: Nationality and Empire" + }, + { + "name": "HIST 3363", + "title": "Russia: Revolution, State, and Empire" + }, + { + "name": "HIST 3411", + "title": "Belief and Society in Pre-Modern Europe " + }, + { + "name": "HIST 3412", + "title": "Power and Conflict in Pre-Modern Europe " + }, + { + "name": "HIST 3413", + "title": "Getting Medieval: Gender, Sex, and Power" + }, + { + "name": "HIST 3414", + "title": "Antigone and the Limits of Sovereignty" + }, + { + "name": "HIST 3422", + "title": "Art, Culture, and European Societies" + }, + { + "name": "HIST 3425", + "title": "Europe and the Other" + }, + { + "name": "HIST 3431", + "title": "Women's Lives in Modern Europe" + }, + { + "name": "HIST 3433", + "title": "Blood and Iron: 19th Century European Diplomacy" + }, + { + "name": "HIST 3434", + "title": "Cold War from the Other Side: The Communist Countries and International History, 1945-1991" + }, + { + "name": "HIST 3435", + "title": "Military Strategy and Policy" + }, + { + "name": "HIST 3438", + "title": "Post-Colonial Europe: Decolonization and After" + }, + { + "name": "HIST 3480", + "title": "Topics in European History" + }, + { + "name": "HIST 3496", + "title": "Intermediate Writing Seminar in European History" + }, + { + "name": "HIST 3511", + "title": "Southern Africa: A History " + }, + { + "name": "HIST 3521", + "title": "The Chinese Revolution" + }, + { + "name": "HIST 3522", + "title": "Contemporary China" + }, + { + "name": "HIST 3531", + "title": "Modern India" + }, + { + "name": "HIST 3541", + "title": "Japan Today" + }, + { + "name": "HIST 3542", + "title": "Women and Society in Japan" + }, + { + "name": "HIST 3551", + "title": "History of Vietnam" + }, + { + "name": "HIST 3556", + "title": "Vietnam, 1945-1992: Resistance, War and Society" + }, + { + "name": "HIST 3561", + "title": "History of Brazil" + }, + { + "name": "HIST 3562", + "title": "Contemporary Mexico" + }, + { + "name": "HIST 3563", + "title": "Puerto Rican History" + }, + { + "name": "HIST 3564", + "title": "Caliban's World: Cultural Politics in the 20th Century Americas" + }, + { + "name": "HIST 3565", + "title": "Hist Latin Amer to 1930" + }, + { + "name": "HIST 3566", + "title": "Race, Gender, and Empire in the Iberian World" + }, + { + "name": "HIST 3571", + "title": "Israel: History, Politics and Society" + }, + { + "name": "HIST 3572", + "title": "Modern Middle East " + }, + { + "name": "HIST 3580", + "title": "Topics in Asian History" + }, + { + "name": "HIST 3675", + "title": "Third World Women's Lives" + }, + { + "name": "HIST 3696", + "title": "Asian Women in Transition" + }, + { + "name": "HIST 3697", + "title": "Intermediate Writing Seminar in African, Asian, Caribbean, and Latin American History" + }, + { + "name": "HIST 3711", + "title": "The City in History" + }, + { + "name": "HIST 3721", + "title": "Women in Preindustrial Societies" + }, + { + "name": "HIST 3741", + "title": "Comparative Slavery" + }, + { + "name": "HIST 3751", + "title": "Colonialism and Decolonization " + }, + { + "name": "HIST 3811", + "title": "World Economy Since 1945" + }, + { + "name": "HIST 3860", + "title": "Topics in World History" + }, + { + "name": "HIST 3870", + "title": "Topics in World History" + }, + { + "name": "HIST 3880", + "title": "Topics in Comparative History" + }, + { + "name": "HIST 3900", + "title": "Honors Special Topics" + }, + { + "name": "HIST 3910", + "title": "Honors Special Topics" + }, + { + "name": "HIST 3911", + "title": "Honors World Economy Since 1945" + }, + { + "name": "HIST 4034", + "title": "Historiography and Research Methods" + }, + { + "name": "HIST 4096", + "title": "Capstone Seminar in History" + }, + { + "name": "HIST 4221", + "title": "The American South" + }, + { + "name": "HIST 4280", + "title": "Special Topics - American History" + }, + { + "name": "HIST 4282", + "title": "Independent Study" + }, + { + "name": "HIST 4289", + "title": "Fieldwork in History" + }, + { + "name": "HIST 4296", + "title": "American History Writing Seminar" + }, + { + "name": "HIST 4297", + "title": "Social History of American Medicine" + }, + { + "name": "HIST 4400", + "title": "Special Topics in History" + }, + { + "name": "HIST 4480", + "title": "Special Topics: European History" + }, + { + "name": "HIST 4496", + "title": "Eastern Europe: Nationalism, Authoritarianism, and Communism" + }, + { + "name": "HIST 4497", + "title": "European History Writing Seminar" + }, + { + "name": "HIST 4540", + "title": "Special Topics: Latin American History" + }, + { + "name": "HIST 4623", + "title": "Asian Biographies: Traditional and Otherwise" + }, + { + "name": "HIST 4628", + "title": "Running Black: Race to Empire" + }, + { + "name": "HIST 4670", + "title": "Special Topics: African History" + }, + { + "name": "HIST 4680", + "title": "Special Topics: Asian History" + }, + { + "name": "HIST 4696", + "title": "Writing Seminar in Asian, African, or Latin American History" + }, + { + "name": "HIST 4697", + "title": "Modern Japan: Empire, War, Society" + }, + { + "name": "HIST 4698", + "title": "Revolutionary Mexico" + }, + { + "name": "HIST 4880", + "title": "Special Topics: World/Comparative History" + }, + { + "name": "HIST 4897", + "title": "Contemporary Theory and Practice of History" + }, + { + "name": "HIST 4934", + "title": "Honors Historiography and Research Methods" + }, + { + "name": "HIST 4968", + "title": "Honors Hitler's Europe: War, Genocide, Resistance" + }, + { + "name": "HIST 4982", + "title": "Honors Independent Study" + }, + { + "name": "HIST 4997", + "title": "Honors Thesis Seminar" + }, + { + "name": "HIST 5010", + "title": "Special Topics in History" + }, + { + "name": "HIST 5151", + "title": "Nonprofit Management for Historians" + }, + { + "name": "HIST 5152", + "title": "Digital History" + }, + { + "name": "HIST 5187", + "title": "Public History Practicum" + }, + { + "name": "HIST 5231", + "title": "Gender and Sexuality in Asia" + }, + { + "name": "HIST 5280", + "title": "Special Topics: American" + }, + { + "name": "HIST 5400", + "title": "Special Topics" + }, + { + "name": "HIST 5480", + "title": "Special Topics: European" + }, + { + "name": "HIST 5500", + "title": "Studies in Asian History" + }, + { + "name": "HIST 5540", + "title": "Special Topics in Latin American History" + }, + { + "name": "HIST 5670", + "title": "Special Topics in African History" + }, + { + "name": "HIST 5680", + "title": "Special Topics in Asian History" + }, + { + "name": "HIST 5800", + "title": "Comparative Women's History" + }, + { + "name": "HIST 5880", + "title": "Special Topics in World or Comparative History" + }, + { + "name": "HIST 8009", + "title": "Women and Gender in the American South" + }, + { + "name": "HIST 8101", + "title": "Introduction to American History I (to 1865)" + }, + { + "name": "HIST 8102", + "title": "Cultural History" + }, + { + "name": "HIST 8103", + "title": "Studies in American Diplomatic History" + }, + { + "name": "HIST 8104", + "title": "Studies in African American History" + }, + { + "name": "HIST 8105", + "title": "History of Education" + }, + { + "name": "HIST 8106", + "title": "Modern American Social History" + }, + { + "name": "HIST 8107", + "title": "Religion in Modern United States" + }, + { + "name": "HIST 8109", + "title": "Studies in 20th Century American Political History" + }, + { + "name": "HIST 8111", + "title": "Introduction to American History II (since 1865)" + }, + { + "name": "HIST 8112", + "title": "Introduction to American History III" + }, + { + "name": "HIST 8121", + "title": "Stalinism: Power, Society, and Culture" + }, + { + "name": "HIST 8151", + "title": "Studies in American Material Culture" + }, + { + "name": "HIST 8152", + "title": "Managing History" + }, + { + "name": "HIST 8153", + "title": "Archives and Manuscripts" + }, + { + "name": "HIST 8201", + "title": "History of Philadelphia" + }, + { + "name": "HIST 8202", + "title": "American Colonial History" + }, + { + "name": "HIST 8203", + "title": "Age of the American Revolution" + }, + { + "name": "HIST 8204", + "title": "Early United States Social History" + }, + { + "name": "HIST 8205", + "title": "Civil War and Reconstruction" + }, + { + "name": "HIST 8206", + "title": "Studies in Recent American Urban History" + }, + { + "name": "HIST 8207", + "title": "Recent United States History" + }, + { + "name": "HIST 8208", + "title": "Studies in United States Urban Crime" + }, + { + "name": "HIST 8209", + "title": "United States Foreign Policy in the Cold War" + }, + { + "name": "HIST 8211", + "title": "Rise of the American Military Profession" + }, + { + "name": "HIST 8212", + "title": "North American Environmental History" + }, + { + "name": "HIST 8213", + "title": "History of the North American West" + }, + { + "name": "HIST 8214", + "title": "Slavery and U.S. History" + }, + { + "name": "HIST 8215", + "title": "Making of American Political Cultures" + }, + { + "name": "HIST 8301", + "title": "Introduction to European History" + }, + { + "name": "HIST 8302", + "title": "Atlantic World 15th-18th Centuries" + }, + { + "name": "HIST 8303", + "title": "Studies in Russian History" + }, + { + "name": "HIST 8304", + "title": "Soviet Cold War- DeStalination" + }, + { + "name": "HIST 8307", + "title": "20th Century Europe" + }, + { + "name": "HIST 8308", + "title": "Imperialism" + }, + { + "name": "HIST 8400", + "title": "Topics in 20th Century Germany" + }, + { + "name": "HIST 8401", + "title": "European Expansion" + }, + { + "name": "HIST 8402", + "title": "Jewish History" + }, + { + "name": "HIST 8403", + "title": "History of European Military Policy" + }, + { + "name": "HIST 8501", + "title": "Introduction to the Third World" + }, + { + "name": "HIST 8502", + "title": "Vietnam War Studies" + }, + { + "name": "HIST 8505", + "title": "Studies in Latin American History" + }, + { + "name": "HIST 8506", + "title": "Studies in Spanish and Portuguese America" + }, + { + "name": "HIST 8610", + "title": "Studies in Chinese History" + }, + { + "name": "HIST 8701", + "title": "Introduction to World History" + }, + { + "name": "HIST 8705", + "title": "New Themes in the History of Slavery" + }, + { + "name": "HIST 8706", + "title": "Comparative Social and Economic History" + }, + { + "name": "HIST 8707", + "title": "History of Sexuality" + }, + { + "name": "HIST 8711", + "title": "History Writing and Editing" + }, + { + "name": "HIST 8712", + "title": "Teaching History in College" + }, + { + "name": "HIST 8713", + "title": "The Historian and Society" + }, + { + "name": "HIST 8714", + "title": "Historical Methods" + }, + { + "name": "HIST 8800", + "title": "Topics in History I" + }, + { + "name": "HIST 8801", + "title": "Cross-Cultural Encounters" + }, + { + "name": "HIST 8807", + "title": "Comparative History - Modern War" + }, + { + "name": "HIST 8809", + "title": "World War II" + }, + { + "name": "HIST 8810", + "title": "Topics in History II" + }, + { + "name": "HIST 8820", + "title": "Topics in History III" + }, + { + "name": "HIST 9153", + "title": "Research - Archives and Manuscripts" + }, + { + "name": "HIST 9187", + "title": "Practicum - Archives and Manuscripts" + }, + { + "name": "HIST 9200", + "title": "Seminar in American History" + }, + { + "name": "HIST 9201", + "title": "Seminar in American Colonial History" + }, + { + "name": "HIST 9203", + "title": "Seminar in the American Frontier" + }, + { + "name": "HIST 9204", + "title": "Cultural History Research Seminar" + }, + { + "name": "HIST 9205", + "title": "Seminar in African-American History" + }, + { + "name": "HIST 9206", + "title": "Seminar in U.S. Military Policy" + }, + { + "name": "HIST 9208", + "title": "Seminar in International History" + }, + { + "name": "HIST 9209", + "title": "Seminar in Modern American Social History" + }, + { + "name": "HIST 9401", + "title": "Seminar in European History" + }, + { + "name": "HIST 9402", + "title": "Seminar in 18th Century England" + }, + { + "name": "HIST 9683", + "title": "Readings in History" + }, + { + "name": "HIST 9783", + "title": "Readings in History II" + }, + { + "name": "HIST 9801", + "title": "Seminar in Comparative History" + }, + { + "name": "HIST 9804", + "title": "Seminar in Women's History" + }, + { + "name": "HIST 9898", + "title": "Dissertation Colloquium" + }, + { + "name": "HIST 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "HIST 9996", + "title": "Master's Thesis" + }, + { + "name": "HIST 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "HIST 9999", + "title": "Dissertation Research" + }, + { + "name": "HIST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HIST F000", + "title": "* See Statement Below" + }, + { + "name": "HIST L000", + "title": "Elective LL" + }, + { + "name": "HIST L001", + "title": "History Elective" + }, + { + "name": "HIST P000", + "title": "Elective P" + }, + { + "name": "HIST U000", + "title": "Elective UL" + }, + { + "name": "HORT 1001", + "title": "Fundamentals of Horticulture" + }, + { + "name": "HORT 1211", + "title": "Woody Plants I" + }, + { + "name": "HORT 1212", + "title": "Woody Plants II" + }, + { + "name": "HORT 1555", + "title": "Equipment Maintenance" + }, + { + "name": "HORT 1566", + "title": "Horticulture Business Management" + }, + { + "name": "HORT 1651", + "title": "Art of Floral Design I" + }, + { + "name": "HORT 1652", + "title": "Art of Floral Design II" + }, + { + "name": "HORT 2114", + "title": "Soils" + }, + { + "name": "HORT 2221", + "title": "Herbaceous Plants I" + }, + { + "name": "HORT 2222", + "title": "Herbaceous Plants II" + }, + { + "name": "HORT 2256", + "title": "Interior Plantscaping" + }, + { + "name": "HORT 2323", + "title": "Greenhouse Management" + }, + { + "name": "HORT 2324", + "title": "Plant Propagation" + }, + { + "name": "HORT 2334", + "title": "Food Crops I" + }, + { + "name": "HORT 2353", + "title": "Food Crops II" + }, + { + "name": "HORT 2356", + "title": "Greenhouse Production" + }, + { + "name": "HORT 2366", + "title": "Nursery Operation, Management, and Production Techniques" + }, + { + "name": "HORT 2552", + "title": "Trees in the Urban Landscape" + }, + { + "name": "HORT 2555", + "title": "Arboriculture" + }, + { + "name": "HORT 2556", + "title": "Introduction to Beekeeping" + }, + { + "name": "HORT 2565", + "title": "Turf Management" + }, + { + "name": "HORT 2575", + "title": "Introduction to Public Horticulture" + }, + { + "name": "HORT 2653", + "title": "Art of Floral Design III" + }, + { + "name": "HORT 2655", + "title": "Flower Shop Management" + }, + { + "name": "HORT 2666", + "title": "Designing with Perennials" + }, + { + "name": "HORT 2753", + "title": "Introduction to Horticultural Therapy" + }, + { + "name": "HORT 2754", + "title": "Horticultural Therapy Skills" + }, + { + "name": "HORT 2755", + "title": "Horticultural Therapy Program Management" + }, + { + "name": "HORT 2850", + "title": "Special Topics in Horticulture/Landscape Architecture I" + }, + { + "name": "HORT 2860", + "title": "Special Topics in Horticulture/Landscape Architecture II" + }, + { + "name": "HORT 2870", + "title": "Special Topics" + }, + { + "name": "HORT 2881", + "title": "Cooperative Education" + }, + { + "name": "HORT 2883", + "title": "Directed Studies in Horticulture" + }, + { + "name": "HORT 2982", + "title": "Honors Projects in Horticulture" + }, + { + "name": "HORT 3256", + "title": "Advanced Plant Materials" + }, + { + "name": "HORT 3423", + "title": "Applied Entomology" + }, + { + "name": "HORT 3424", + "title": "Applied Plant Pathology" + }, + { + "name": "HORT 3456", + "title": "Tree Pathology" + }, + { + "name": "HORT 3514", + "title": "Landscape Restoration" + }, + { + "name": "HORT 3523", + "title": "Landscape Management" + }, + { + "name": "HORT 3882", + "title": "Independent Study" + }, + { + "name": "HORT 3885", + "title": "Internship" + }, + { + "name": "HORT 4896", + "title": "Senior Seminar" + }, + { + "name": "HORT 8261", + "title": "Native Woody Plant Identification" + }, + { + "name": "HORT 8514", + "title": "Landscape Restoration" + }, + { + "name": "HORT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HORT L000", + "title": "Elective LL" + }, + { + "name": "HORT T000", + "title": "Elective" + }, + { + "name": "HORT U000", + "title": "Elective" + }, + { + "name": "HDCE 2304", + "title": "Families and the Community" + }, + { + "name": "HDCE 3332", + "title": "Professional Seminar in Human Development and Community Engagement I" + }, + { + "name": "HDCE 3333", + "title": "Professional Seminar in Human Development and Community Engagement II" + }, + { + "name": "HDCE 3334", + "title": "Professional Seminar in Human Development and Community Engagement III" + }, + { + "name": "HDCE 4185", + "title": "Community Internship and Seminar" + }, + { + "name": "HDCE 4187", + "title": "Practicum in Applied Development" + }, + { + "name": "HDCE 4302", + "title": "Economics for Education" + }, + { + "name": "HDCE 4305", + "title": "Curriculum and Training Design" + }, + { + "name": "HDCE 4333", + "title": "Program Evaluation" + }, + { + "name": "HDCE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HRM 1101", + "title": "Leadership and Organizational Management" + }, + { + "name": "HRM 1901", + "title": "Honors Leadership and Organizational Management" + }, + { + "name": "HRM 2501", + "title": "Introduction to Human Resource Management" + }, + { + "name": "HRM 2511", + "title": "Corporate Sustainability: People, Profits & Planet" + }, + { + "name": "HRM 3501", + "title": "Power, Influence and Negotiation" + }, + { + "name": "HRM 3502", + "title": "Leading People at Work" + }, + { + "name": "HRM 3503", + "title": "Communicating in Organizations" + }, + { + "name": "HRM 3504", + "title": "Leadership in the 21st Century" + }, + { + "name": "HRM 3505", + "title": "Sustainable Organizational Leadership" + }, + { + "name": "HRM 3506", + "title": "HR Metrics: Using Data, Scorecards and Dashboards to Drive Business Performance" + }, + { + "name": "HRM 3507", + "title": "Intrapreneurship in the 21st Century" + }, + { + "name": "HRM 3511", + "title": "Compensation Management" + }, + { + "name": "HRM 3512", + "title": "Human Resource Management and Public Policy" + }, + { + "name": "HRM 3513", + "title": "Labor Relations: Strategy and Practice" + }, + { + "name": "HRM 3531", + "title": "HR on the Ground" + }, + { + "name": "HRM 3565", + "title": "International Human Resource Management" + }, + { + "name": "HRM 3580", + "title": "Special Topics - Human Resource Management" + }, + { + "name": "HRM 3581", + "title": "Co-op Experience in Human Resource Management" + }, + { + "name": "HRM 3582", + "title": "Independent Study" + }, + { + "name": "HRM 3682", + "title": "Independent Study" + }, + { + "name": "HRM 3902", + "title": "Honors Managing People at Work" + }, + { + "name": "HRM 3903", + "title": "Honors - Management, Theory & Practice: From the Locker Room to the Board Room" + }, + { + "name": "HRM 3904", + "title": "Honors, The Leadership Experience: Leading Yourself, Leading Change, Leading Communities" + }, + { + "name": "HRM 3999", + "title": "Honors Thesis I" + }, + { + "name": "HRM 4596", + "title": "Organizational Staffing and Career Management" + }, + { + "name": "HRM 4597", + "title": "Critical Skills for Effective Managers" + }, + { + "name": "HRM 4999", + "title": "Honors Senior Thesis II" + }, + { + "name": "HRM 5001", + "title": "Leadership in Organizations" + }, + { + "name": "HRM 5051", + "title": "Human Resources Management Strategies" + }, + { + "name": "HRM 5052", + "title": "Ethical Decisions in Business" + }, + { + "name": "HRM 5053", + "title": "Effective Organizational Communication" + }, + { + "name": "HRM 5054", + "title": "Leadership Development" + }, + { + "name": "HRM 5101", + "title": "Leadership in Complex Organizations" + }, + { + "name": "HRM 5111", + "title": "Organizational Communication and Information Management" + }, + { + "name": "HRM 5112", + "title": "Leading High Performing Teams" + }, + { + "name": "HRM 5113", + "title": "Power, Influence, and Negotiation in Organizations" + }, + { + "name": "HRM 5114", + "title": "Building Human Capital for High Performance Organizations" + }, + { + "name": "HRM 5115", + "title": "Talent Acquisition" + }, + { + "name": "HRM 5116", + "title": "Strategic Reward Systems" + }, + { + "name": "HRM 5117", + "title": "Public Policy and Compliance" + }, + { + "name": "HRM 5118", + "title": "Business Transformation through Big Data" + }, + { + "name": "HRM 5119", + "title": "Human Resource Consulting" + }, + { + "name": "HRM 5125", + "title": "Strategic Challenges in Human Resources" + }, + { + "name": "HRM 5131", + "title": "Ethics and Social Responsibility in Organizations" + }, + { + "name": "HRM 5155", + "title": "Coord & Control in Virt Org" + }, + { + "name": "HRM 5161", + "title": "Human Resource Management in a Global Environment" + }, + { + "name": "HRM 5170", + "title": "Special Topics: Human Resource Management" + }, + { + "name": "HRM 5180", + "title": "Special Topics: Human Resource Management" + }, + { + "name": "HRM 5182", + "title": "Independent Study" + }, + { + "name": "HRM 5190", + "title": "Special Topics: Human Resource Management" + }, + { + "name": "HRM 5282", + "title": "Independent Study" + }, + { + "name": "HRM 5302", + "title": "Ethical Management" + }, + { + "name": "HRM 5303", + "title": "Influential Communication in Complex Organizations" + }, + { + "name": "HRM 5802", + "title": "Leading and Managing Teams and Individuals" + }, + { + "name": "HRM 5804", + "title": "Managing and Developing Human Capital in the Enterprise" + }, + { + "name": "HRM 5882", + "title": "Independent Study" + }, + { + "name": "HRM 5890", + "title": "Special Topics" + }, + { + "name": "HRM 9001", + "title": "Managing Human Resources" + }, + { + "name": "HRM 9002", + "title": "Managing Work Behavior and Attitude" + }, + { + "name": "HRM 9003", + "title": "Organization and Environment" + }, + { + "name": "HRM 9004", + "title": "Dynamics of Organizational Interaction" + }, + { + "name": "HRM 9005", + "title": "Seminar in Functional Human Resource Management" + }, + { + "name": "HRM 9006", + "title": "Doctoral Seminar in Meta-analysis and Research Synthesis Methods" + }, + { + "name": "HRM 9011", + "title": "Pro-Seminar in Human Resource Management and Organization Behavior" + }, + { + "name": "HRM 9021", + "title": "Current Readings in Human Resource Management and Organizational Behavior" + }, + { + "name": "HRM 9090", + "title": "Special Topics" + }, + { + "name": "HRM 9183", + "title": "Directed Study in Human Resource Administration" + }, + { + "name": "HRM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "HS 4000", + "title": "Special Topics" + }, + { + "name": "HS 8701", + "title": "Introduction to Play Therapy" + }, + { + "name": "HS 8805", + "title": "Play Therapy Techniques" + }, + { + "name": "HS 8806", + "title": "Play Therapy Applications for Special Populations" + }, + { + "name": "HS 8807", + "title": "Advanced Play Therapy Practice" + }, + { + "name": "HS 9001", + "title": "Advanced Play Therapy Seminar" + }, + { + "name": "ISE 2101", + "title": "Applied Statistical Methods for Industrial and System Engineers" + }, + { + "name": "ISE 2102", + "title": "Production Process Design and Laboratory" + }, + { + "name": "ISE 2103", + "title": "Deterministic Models in Operations Research" + }, + { + "name": "ISE 3101", + "title": "Product Quality Assurance" + }, + { + "name": "ISE 3102", + "title": "Stochastic Models in Operations Research" + }, + { + "name": "ISE 4101", + "title": "Human Factors (Ergonomics)" + }, + { + "name": "ISE 4102", + "title": "Industrial Simulation" + }, + { + "name": "ISE 4103", + "title": "Engineering Cost Analysis" + }, + { + "name": "ISE 4104", + "title": "Production Planning and Control" + }, + { + "name": "ISE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "IH 0851", + "title": "Intellectual Heritage I: The Good Life" + }, + { + "name": "IH 0852", + "title": "Intellectual Heritage II: The Common Good" + }, + { + "name": "IH 0951", + "title": "Honors Intellectual Heritage I: The Good Life" + }, + { + "name": "IH 0952", + "title": "Honors Intellectual Heritage II: The Common Good" + }, + { + "name": "IH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "IB 2501", + "title": "Fundamentals of Asian Business" + }, + { + "name": "IB 2502", + "title": "Fundamentals of Latin American Business" + }, + { + "name": "IB 2503", + "title": "Fundamentals of European Business" + }, + { + "name": "IB 2504", + "title": "Fundamentals of Business in Africa and the Middle East" + }, + { + "name": "IB 2509", + "title": "Short Study Trip Abroad: Doing Business in a Foreign Country" + }, + { + "name": "IB 3101", + "title": "Fundamentals of International Business" + }, + { + "name": "IB 3551", + "title": "International Finance" + }, + { + "name": "IB 3552", + "title": "International Financial Management" + }, + { + "name": "IB 3553", + "title": "International Marketing" + }, + { + "name": "IB 3562", + "title": "International Law" + }, + { + "name": "IB 3563", + "title": "International Trade" + }, + { + "name": "IB 3564", + "title": "International Monetary Economics" + }, + { + "name": "IB 3565", + "title": "International Human Resource Management" + }, + { + "name": "IB 3580", + "title": "Special Topics in International Business" + }, + { + "name": "IB 3581", + "title": "International Business Internship" + }, + { + "name": "IB 3582", + "title": "Independent Study" + }, + { + "name": "IB 3585", + "title": "International Business Internship" + }, + { + "name": "IB 3596", + "title": "Global Entrepreneurship" + }, + { + "name": "IB 3682", + "title": "Independent Study" + }, + { + "name": "IB 3901", + "title": "Honors Fundamentals of International Business" + }, + { + "name": "IB 3999", + "title": "Honors Thesis I" + }, + { + "name": "IB 4587", + "title": "International Business Practicum" + }, + { + "name": "IB 4999", + "title": "Honors Thesis II" + }, + { + "name": "IB 5501", + "title": "IB Theory & Practice" + }, + { + "name": "IB 5502", + "title": "International Marketing" + }, + { + "name": "IB 5511", + "title": "International Management" + }, + { + "name": "IB 5535", + "title": "Intl Financial Markets" + }, + { + "name": "IB 5536", + "title": "Intl Corporate Finance" + }, + { + "name": "IB 5570", + "title": "Special Topics" + }, + { + "name": "IB 5580", + "title": "Special Topics" + }, + { + "name": "IB 5582", + "title": "Independent Study" + }, + { + "name": "IB 5590", + "title": "Special Topics: Intl Bus" + }, + { + "name": "IB 5882", + "title": "Independent Study" + }, + { + "name": "IB 5890", + "title": "Special Topics" + }, + { + "name": "IB 9001", + "title": "Theory-Int Bus & Mltinat" + }, + { + "name": "IB 9002", + "title": "Empirical Research in International Business" + }, + { + "name": "IB 9090", + "title": "Spec Topic Intl Bus" + }, + { + "name": "IB 9183", + "title": "Directed Study in International Business" + }, + { + "name": "IB E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ITAL 0815", + "title": "Language in Society" + }, + { + "name": "ITAL 0831", + "title": "Immigration and the American Dream" + }, + { + "name": "ITAL 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "ITAL 0931", + "title": "Honors Immigration and the American Dream" + }, + { + "name": "ITAL 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "ITAL 1001", + "title": "Italian Language I" + }, + { + "name": "ITAL 1002", + "title": "Italian Language II" + }, + { + "name": "ITAL 1003", + "title": "Italian Language III" + }, + { + "name": "ITAL 1011", + "title": "Fundamentals - Intensive Basic Language" + }, + { + "name": "ITAL 1901", + "title": "Honors Italian Language I" + }, + { + "name": "ITAL 1902", + "title": "Honors Italian Language II" + }, + { + "name": "ITAL 2000", + "title": "Special Topics" + }, + { + "name": "ITAL 2001", + "title": "Intermediate Italian I" + }, + { + "name": "ITAL 2002", + "title": "Intermediate Italian II" + }, + { + "name": "ITAL 2041", + "title": "Readings in Italian" + }, + { + "name": "ITAL 2096", + "title": "Composition I: Italian Composition and Conversation" + }, + { + "name": "ITAL 2100", + "title": "Special Topics in Italian Culture" + }, + { + "name": "ITAL 2221", + "title": "Italian Culture through Film" + }, + { + "name": "ITAL 2401", + "title": "The Italian Origins of Classic Fairy Tales" + }, + { + "name": "ITAL 2501", + "title": "Italian for Business" + }, + { + "name": "ITAL 3000", + "title": "Special Topics in Italian Studies (Taught in English)" + }, + { + "name": "ITAL 3096", + "title": "Composition II: Advanced Writing Skills" + }, + { + "name": "ITAL 3101", + "title": "Survey of Italian Literature I" + }, + { + "name": "ITAL 3102", + "title": "Survey of Italian Literature II" + }, + { + "name": "ITAL 3182", + "title": "Independent Study I" + }, + { + "name": "ITAL 3201", + "title": "Italian Culture and Civilization" + }, + { + "name": "ITAL 3240", + "title": "Topics in Italian Cinema and Literature (in English)" + }, + { + "name": "ITAL 3282", + "title": "Independent Study II" + }, + { + "name": "ITAL 4096", + "title": "Creative Writing Through Reading" + }, + { + "name": "ITAL 4120", + "title": "Special Topics" + }, + { + "name": "ITAL 4121", + "title": "Nobel Prize Winners in Italian Literature" + }, + { + "name": "ITAL 4122", + "title": "Italian Theater and Performance" + }, + { + "name": "ITAL 4130", + "title": "Topics in Italian Literature" + }, + { + "name": "ITAL 4161", + "title": "Italian American Literature and Culture" + }, + { + "name": "ITAL 4240", + "title": "Topics in Italian Cinema & Literature" + }, + { + "name": "ITAL 4401", + "title": "Techniques of Translation" + }, + { + "name": "ITAL 4920", + "title": "Honors Special Topics" + }, + { + "name": "ITAL E000", + "title": "Elective - needs evaluation" + }, + { + "name": "ITAL F000", + "title": "* See Statement Below" + }, + { + "name": "ITAL L000", + "title": "Elective" + }, + { + "name": "ITAL P000", + "title": "Elective P" + }, + { + "name": "ITAL U000", + "title": "Elective UL" + }, + { + "name": "JPNS 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "JPNS 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "JPNS 1001", + "title": "Japanese Elements I" + }, + { + "name": "JPNS 1002", + "title": "Japanese Elements II" + }, + { + "name": "JPNS 1003", + "title": "Oral Intensive Japanese I" + }, + { + "name": "JPNS 1301", + "title": "Kanji I" + }, + { + "name": "JPNS 2000", + "title": "Special Topics I" + }, + { + "name": "JPNS 2001", + "title": "Intermediate Japanese I" + }, + { + "name": "JPNS 2002", + "title": "Intermediate Japanese II" + }, + { + "name": "JPNS 2003", + "title": "Oral Intensive Japanese II" + }, + { + "name": "JPNS 2010", + "title": "Special Topics II" + }, + { + "name": "JPNS 2011", + "title": "Survey of Japanese Literature: Pre-Modern" + }, + { + "name": "JPNS 2012", + "title": "Modern and Contemporary Japanese Literature in Translation" + }, + { + "name": "JPNS 2015", + "title": "Tokyo in Literature and Film" + }, + { + "name": "JPNS 2016", + "title": "Mystery and Crime Fiction in Japan" + }, + { + "name": "JPNS 2017", + "title": "Stories of Parents and Children in Japanese Literature and Film" + }, + { + "name": "JPNS 2021", + "title": "Japanese Literature in Film" + }, + { + "name": "JPNS 2050", + "title": "The Japanese Writer in Focus" + }, + { + "name": "JPNS 2111", + "title": "Japanese Literature: From Classical to Contemporary" + }, + { + "name": "JPNS 2301", + "title": "Kanji II" + }, + { + "name": "JPNS 2522", + "title": "Basic Writing in Japanese" + }, + { + "name": "JPNS 2631", + "title": "Structure of Japanese Language I" + }, + { + "name": "JPNS 2701", + "title": "TUJ - Japanese Intermediate I" + }, + { + "name": "JPNS 2702", + "title": "TUJ - Japanese Intermediate II" + }, + { + "name": "JPNS 2782", + "title": "Independent Study in Japanese" + }, + { + "name": "JPNS 2921", + "title": "Honors Japanese Literature in Film" + }, + { + "name": "JPNS 3000", + "title": "Special Topics in Japanese I" + }, + { + "name": "JPNS 3001", + "title": "Advanced Japanese I" + }, + { + "name": "JPNS 3002", + "title": "Advanced Japanese II" + }, + { + "name": "JPNS 3003", + "title": "Advanced Japanese Writing" + }, + { + "name": "JPNS 3010", + "title": "Special Topics in Japanese II" + }, + { + "name": "JPNS 3096", + "title": "Intermediate Writing in Japanese" + }, + { + "name": "JPNS 3631", + "title": "Structure of Japanese Language II" + }, + { + "name": "JPNS 3900", + "title": "Honors Special Topics: Japanese" + }, + { + "name": "JPNS 4001", + "title": "Japanese Advanced III" + }, + { + "name": "JPNS 4002", + "title": "Japanese Advanced IV" + }, + { + "name": "JPNS 4003", + "title": "Advanced Oral Japanese" + }, + { + "name": "JPNS 4031", + "title": "Introduction to Japanese Linguistics I" + }, + { + "name": "JPNS 4032", + "title": "Introduction to Japanese Linguistics II" + }, + { + "name": "JPNS 4033", + "title": "Introduction to Japanese Linguistics III" + }, + { + "name": "JPNS 4182", + "title": "Japanese Independent Study I" + }, + { + "name": "JPNS 4196", + "title": "Seminar in Japanese and Japan: Japanese Society and Culture through Newspaper" + }, + { + "name": "JPNS 4282", + "title": "Japanese Independent Study II" + }, + { + "name": "JPNS 4296", + "title": "Seminar in Japanese and Japan: Business" + }, + { + "name": "JPNS 4396", + "title": "Seminar in Japanese and Japan: Literature" + }, + { + "name": "JPNS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "JPNS L000", + "title": "Elective LL" + }, + { + "name": "JST 0802", + "title": "Race & Identity in Judaism" + }, + { + "name": "JST 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "JST 0902", + "title": "Honors Race & Identity in Judaism" + }, + { + "name": "JST 2000", + "title": "Special Topics in Jewish Studies " + }, + { + "name": "JST 2109", + "title": "Jewish Voices in Russian Culture" + }, + { + "name": "JST 2403", + "title": "What is Judaism?" + }, + { + "name": "JST 2405", + "title": "Introduction to Afro-Jewish Studies" + }, + { + "name": "JST 2406", + "title": "Introduction to the Bible" + }, + { + "name": "JST 2408", + "title": "Jewish Secular Thought and Culture from Spinoza to Seinfeld: A History of Jewish Secularism" + }, + { + "name": "JST 2409", + "title": "Secular Jewish Utopian Politics / Jewtopias: The Jewish Romance with Communism, Zionism, and America" + }, + { + "name": "JST 2447", + "title": "Kabbalah and Mysticism" + }, + { + "name": "JST 2496", + "title": "Introduction to the Bible" + }, + { + "name": "JST 2705", + "title": "Anti-Semitism/Holocaust/Racism" + }, + { + "name": "JST 2706", + "title": "Jewish Diaspora/Survey of Jewish History" + }, + { + "name": "JST 2779", + "title": "Love Themes in Hebrew Literature" + }, + { + "name": "JST 2797", + "title": "Jewish Humor Past and Present" + }, + { + "name": "JST 2900", + "title": "Honors Special Topics" + }, + { + "name": "JST 3000", + "title": "Topics in Jewish Studies" + }, + { + "name": "JST 3082", + "title": "Independent Jewish Studies" + }, + { + "name": "JST 3085", + "title": "Jewish Studies Internship" + }, + { + "name": "JST 3182", + "title": "Independent Study" + }, + { + "name": "JST 3221", + "title": "Jewish Experience in America" + }, + { + "name": "JST 3250", + "title": "Topics: Jews & Film" + }, + { + "name": "JST 3404", + "title": "Dead Sea Scrolls" + }, + { + "name": "JST 3406", + "title": "Women in Judaism" + }, + { + "name": "JST 3407", + "title": "Jews, America and Sports" + }, + { + "name": "JST 3408", + "title": "Israel in the Middle East" + }, + { + "name": "JST 3411", + "title": "The Philosophies of Judaism" + }, + { + "name": "JST 3571", + "title": "Israel, History, Politics and Society" + }, + { + "name": "JST 3711", + "title": "Israelis and Palestinians" + }, + { + "name": "JST 3720", + "title": "Topics in Hebrew Culture" + }, + { + "name": "JST 3797", + "title": "Literature and Art of the Holocaust" + }, + { + "name": "JST 3900", + "title": "Honors Special Topics" + }, + { + "name": "JST 4096", + "title": "Independent Study in Jewish Studies" + }, + { + "name": "JST 4406", + "title": "Ancient Judaism" + }, + { + "name": "JST 4411", + "title": "Secularism: Jewish and Muslim Women" + }, + { + "name": "JST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "JRN 1101", + "title": "Elements of Writing" + }, + { + "name": "JRN 1111", + "title": "Journalism and Society" + }, + { + "name": "JRN 1113", + "title": "Audio/Visual Newsgathering" + }, + { + "name": "JRN 1114", + "title": "Design for Journalists" + }, + { + "name": "JRN 1196", + "title": "Writing and Reporting" + }, + { + "name": "JRN 2101", + "title": "Journalism Research" + }, + { + "name": "JRN 2111", + "title": "The Practice and Process of News" + }, + { + "name": "JRN 2114", + "title": "Journalism Innovation and Design" + }, + { + "name": "JRN 2201", + "title": "Public Affairs Reporting" + }, + { + "name": "JRN 2202", + "title": "Editing the News" + }, + { + "name": "JRN 2301", + "title": "Introduction to Magazines" + }, + { + "name": "JRN 2396", + "title": "Magazine Article Writing" + }, + { + "name": "JRN 2501", + "title": "Broadcast Newswriting" + }, + { + "name": "JRN 2551", + "title": "Broadcast Performance" + }, + { + "name": "JRN 2701", + "title": "Approaches to Research in Journalism Studies" + }, + { + "name": "JRN 2702", + "title": "News Literacy" + }, + { + "name": "JRN 2800", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 2810", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3101", + "title": "Journalism Law and Ethics" + }, + { + "name": "JRN 3201", + "title": "Investigative Reporting" + }, + { + "name": "JRN 3251", + "title": "Business Writing" + }, + { + "name": "JRN 3252", + "title": "Editorial Writing" + }, + { + "name": "JRN 3253", + "title": "Health and Environmental Writing" + }, + { + "name": "JRN 3254", + "title": "International Reporting" + }, + { + "name": "JRN 3255", + "title": "Sports Writing" + }, + { + "name": "JRN 3256", + "title": "Writing Humor" + }, + { + "name": "JRN 3257", + "title": "Advanced Sports Reporting" + }, + { + "name": "JRN 3258", + "title": "Solutions Journalism" + }, + { + "name": "JRN 3262", + "title": "Writing Arts Criticism" + }, + { + "name": "JRN 3296", + "title": "Travel Writing" + }, + { + "name": "JRN 3297", + "title": "Writing Arts Criticism" + }, + { + "name": "JRN 3301", + "title": "Magazine Editing" + }, + { + "name": "JRN 3302", + "title": "Longform Magazine Writing" + }, + { + "name": "JRN 3303", + "title": "Magazine Design" + }, + { + "name": "JRN 3304", + "title": "14th Street Magazine" + }, + { + "name": "JRN 3351", + "title": "Magazine Fiction Workshop" + }, + { + "name": "JRN 3352", + "title": "Ripped from the Headlines" + }, + { + "name": "JRN 3401", + "title": "Photography" + }, + { + "name": "JRN 3402", + "title": "Photojournalism" + }, + { + "name": "JRN 3403", + "title": "Documentary Photography" + }, + { + "name": "JRN 3404", + "title": "Photography Seminar I" + }, + { + "name": "JRN 3405", + "title": "Photography Seminar II" + }, + { + "name": "JRN 3451", + "title": "Photographic Portfolio" + }, + { + "name": "JRN 3482", + "title": "Photography Special Projects" + }, + { + "name": "JRN 3501", + "title": "Radio News Reporting" + }, + { + "name": "JRN 3502", + "title": "TV News Reporting" + }, + { + "name": "JRN 3504", + "title": "Broadcast News Documentary" + }, + { + "name": "JRN 3505", + "title": "Experimental Journalism" + }, + { + "name": "JRN 3506", + "title": "Broadcast News Producing" + }, + { + "name": "JRN 3551", + "title": "Advanced Video Newsgathering" + }, + { + "name": "JRN 3552", + "title": "Crossroads: TUTV News Magazine" + }, + { + "name": "JRN 3554", + "title": "A Broader View" + }, + { + "name": "JRN 3587", + "title": "WRTI Radio News Workshop" + }, + { + "name": "JRN 3601", + "title": "Multimedia Storytelling" + }, + { + "name": "JRN 3605", + "title": "Data Journalism" + }, + { + "name": "JRN 3700", + "title": "Journalism Studies Special Topics" + }, + { + "name": "JRN 3701", + "title": "Contemporary Issues in Journalism" + }, + { + "name": "JRN 3702", + "title": "Race and Racism in the News" + }, + { + "name": "JRN 3703", + "title": "History of Journalism" + }, + { + "name": "JRN 3704", + "title": "Ethical Issues in Journalism" + }, + { + "name": "JRN 3705", + "title": "Gender and American Mass Media" + }, + { + "name": "JRN 3706", + "title": "Journalism and Globalization" + }, + { + "name": "JRN 3707", + "title": "Visual Communication" + }, + { + "name": "JRN 3708", + "title": "Newsroom Management" + }, + { + "name": "JRN 3709", + "title": "The Entrepreneurial Journalist" + }, + { + "name": "JRN 3710", + "title": "Journalism Studies Special Topics" + }, + { + "name": "JRN 3711", + "title": "Ethnic and Alternative News Media" + }, + { + "name": "JRN 3712", + "title": "The Business of Journalism" + }, + { + "name": "JRN 3719", + "title": "Research Colloquium in Journalism Studies" + }, + { + "name": "JRN 3720", + "title": "Journalism Studies Special Topics" + }, + { + "name": "JRN 3730", + "title": "Journalism Studies Special Topics" + }, + { + "name": "JRN 3751", + "title": "Foreign Studies in Journalism" + }, + { + "name": "JRN 3790", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3800", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3801", + "title": "Business Practices for Writers and Editors" + }, + { + "name": "JRN 3802", + "title": "Business Practices for Visual Journalists" + }, + { + "name": "JRN 3810", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3820", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3830", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3840", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3850", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3860", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3870", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3880", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3882", + "title": "Special Projects" + }, + { + "name": "JRN 3885", + "title": "Internship" + }, + { + "name": "JRN 3887", + "title": "High School Journalism Workshop" + }, + { + "name": "JRN 3890", + "title": "Special Topics in Journalism" + }, + { + "name": "JRN 3900", + "title": "Honors Special Topics in Journalism" + }, + { + "name": "JRN 3901", + "title": "Honors: Comics Journalism" + }, + { + "name": "JRN 3908", + "title": "Honors True Stories: Narrative Nonfiction Journalism" + }, + { + "name": "JRN 4173", + "title": "Philadelphia Neighborhoods II: Audio Visual Storytelling" + }, + { + "name": "JRN 4174", + "title": "Philadelphia Neighborhoods II: The Magazine" + }, + { + "name": "JRN 4175", + "title": "Philadelphia Neighborhoods II: Data, Development and Design" + }, + { + "name": "JRN 4196", + "title": "Philadelphia Neighborhoods Capstone: News Beat" + }, + { + "name": "JRN 4571", + "title": "International Studies in Media and Communication" + }, + { + "name": "JRN 4596", + "title": "Broadcast Journalism Practicum" + }, + { + "name": "JRN 4597", + "title": "Sports Production Practicum" + }, + { + "name": "JRN 5001", + "title": "Crit Perspectives Journ" + }, + { + "name": "JRN 5002", + "title": "Reporting and Writing I" + }, + { + "name": "JRN 5004", + "title": "Computer-Assisted Reporting and Research" + }, + { + "name": "JRN 5005", + "title": "Communication Law" + }, + { + "name": "JRN 5012", + "title": "Reporting and Writing II" + }, + { + "name": "JRN 5013", + "title": "Editing the News II" + }, + { + "name": "JRN 5102", + "title": "International Reporting" + }, + { + "name": "JRN 5121", + "title": "Magazine Writing" + }, + { + "name": "JRN 5151", + "title": "Literary Writing in Journalism" + }, + { + "name": "JRN 5201", + "title": "The American Magazine" + }, + { + "name": "JRN 5211", + "title": "Media Management" + }, + { + "name": "JRN 5212", + "title": "The Entrepreneurial Journalist" + }, + { + "name": "JRN 5213", + "title": "Solutions Journalism" + }, + { + "name": "JRN 5221", + "title": "Journalism and Mass Communication History" + }, + { + "name": "JRN 5251", + "title": "Mass Communication Research Methods" + }, + { + "name": "JRN 5252", + "title": "Models of Journalism Around the World" + }, + { + "name": "JRN 5301", + "title": "Introduction to Urban Journalism" + }, + { + "name": "JRN 5302", + "title": "Urban Reporting Lab 1" + }, + { + "name": "JRN 5303", + "title": "Journalism Concepts" + }, + { + "name": "JRN 5304", + "title": "Editing the News" + }, + { + "name": "JRN 5305", + "title": "Urban Reporting Lab 2" + }, + { + "name": "JRN 5306", + "title": "Journalism and the Public Interest" + }, + { + "name": "JRN 5307", + "title": "Capstone Reporting Experience" + }, + { + "name": "JRN 5601", + "title": "Temple Journalism Review" + }, + { + "name": "JRN 5602", + "title": "Documentary Journalism" + }, + { + "name": "JRN 5603", + "title": "Urban Reporting Lab" + }, + { + "name": "JRN 5700", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5710", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5720", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5730", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5740", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5750", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5760", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5770", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5780", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5790", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5800", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5810", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5820", + "title": "Seminars in Communication" + }, + { + "name": "JRN 5890", + "title": "Seminars in Communication Abroad" + }, + { + "name": "JRN 5982", + "title": "Directed Projects" + }, + { + "name": "JRN 5983", + "title": "Directed Readings Comm" + }, + { + "name": "JRN 5986", + "title": "Internship" + }, + { + "name": "JRN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "JRN F000", + "title": "* See Statement Below" + }, + { + "name": "JRN L000", + "title": "Elective LL" + }, + { + "name": "JRN T000", + "title": "Elective" + }, + { + "name": "JRN U000", + "title": "Elective UL" + }, + { + "name": "JUDO 0000", + "title": "Law Abroad-Cork" + }, + { + "name": "JUDO 0001", + "title": "Law Abroad-Tel Aviv" + }, + { + "name": "JUDO 0002", + "title": "Law Abroad-Athens" + }, + { + "name": "JUDO 0003", + "title": "Law Abroad-Rome" + }, + { + "name": "JUDO 0004", + "title": "Law Abroad-Japan" + }, + { + "name": "JUDO 0400", + "title": "Administrative Law" + }, + { + "name": "JUDO 0401", + "title": "Litigation Basics" + }, + { + "name": "JUDO 0402", + "title": "Civil Procedure I" + }, + { + "name": "JUDO 0403", + "title": "Law Day Division" + }, + { + "name": "JUDO 0404", + "title": "Constitutional Law" + }, + { + "name": "JUDO 0405", + "title": "Law PTD Reg Division" + }, + { + "name": "JUDO 0406", + "title": "Contracts" + }, + { + "name": "JUDO 0407", + "title": "Law Eve Reg Division" + }, + { + "name": "JUDO 0408", + "title": "Contracts II" + }, + { + "name": "JUDO 0409", + "title": "Law Eve Ext Division" + }, + { + "name": "JUDO 0410", + "title": "Criminal Law I" + }, + { + "name": "JUDO 0411", + "title": "Law PTD Ext Division " + }, + { + "name": "JUDO 0412", + "title": "Transfer Credit" + }, + { + "name": "JUDO 0413", + "title": "JD/MBA" + }, + { + "name": "JUDO 0414", + "title": "Legal Research & Writing" + }, + { + "name": "JUDO 0415", + "title": "Adv Legal Research/Writing " + }, + { + "name": "JUDO 0416", + "title": "Professional Responsibility" + }, + { + "name": "JUDO 0417", + "title": "Advanced Contracts: UCC and Interpretation" + }, + { + "name": "JUDO 0418", + "title": "Property" + }, + { + "name": "JUDO 0419", + "title": "Philosophy of Law" + }, + { + "name": "JUDO 0420", + "title": "Torts" + }, + { + "name": "JUDO 0421", + "title": "Spanish for Lawyers" + }, + { + "name": "JUDO 0422", + "title": "Legal Decision Making" + }, + { + "name": "JUDO 0423", + "title": "Intl/Comprtv Family Law" + }, + { + "name": "JUDO 0424", + "title": "Crim Pro: Euro-Japan-US" + }, + { + "name": "JUDO 0425", + "title": "Supreme Ct/Current Term" + }, + { + "name": "JUDO 0426", + "title": "Sexual Orientation & Law" + }, + { + "name": "JUDO 0427", + "title": "Comnty Economic Devlpmnt" + }, + { + "name": "JUDO 0428", + "title": "Pennsylvania Civil Procedure" + }, + { + "name": "JUDO 0429", + "title": "Sexual Orientation, Gender Identity and the Law" + }, + { + "name": "JUDO 0430", + "title": "Water Law" + }, + { + "name": "JUDO 0431", + "title": "Collective Bargaining" + }, + { + "name": "JUDO 0432", + "title": "Mass Tort Litigation" + }, + { + "name": "JUDO 0433", + "title": "Cyberspace" + }, + { + "name": "JUDO 0434", + "title": "Constnl Lmts Reg Commrce" + }, + { + "name": "JUDO 0435", + "title": "Human Rights/Euro Union" + }, + { + "name": "JUDO 0436", + "title": "Law of Investigations" + }, + { + "name": "JUDO 0437", + "title": "Introduction to Transactional Skills" + }, + { + "name": "JUDO 0438", + "title": "Introduction to Business Organizations" + }, + { + "name": "JUDO 0439", + "title": "Business Law Basics" + }, + { + "name": "JUDO 0440", + "title": "Unincorporated Business Organizations: Agency, Partnerships and LLC's" + }, + { + "name": "JUDO 0441", + "title": "Adv Con Law: Con Theory" + }, + { + "name": "JUDO 0442", + "title": "Violence Against Women" + }, + { + "name": "JUDO 0443", + "title": "Intro Asian Legal System" + }, + { + "name": "JUDO 0444", + "title": "National Security Law" + }, + { + "name": "JUDO 0445", + "title": "Family Law: Custody" + }, + { + "name": "JUDO 0446", + "title": "Social Science in Law" + }, + { + "name": "JUDO 0447", + "title": "Intellectual Property Licensing Law" + }, + { + "name": "JUDO 0448", + "title": "Business Acquisitions" + }, + { + "name": "JUDO 0449", + "title": "Lawyering for Organizations" + }, + { + "name": "JUDO 0450", + "title": "Envrnmntl Lit/Superfund" + }, + { + "name": "JUDO 0451", + "title": "Business Mergers and Acquisitions" + }, + { + "name": "JUDO 0452", + "title": "AIDS & the Law" + }, + { + "name": "JUDO 0453", + "title": "Law of the European Union" + }, + { + "name": "JUDO 0454", + "title": "Commercial Finance Trans" + }, + { + "name": "JUDO 0455", + "title": "Economics of Divorce" + }, + { + "name": "JUDO 0456", + "title": "Adv Evidence: Scientific" + }, + { + "name": "JUDO 0457", + "title": "Business Torts" + }, + { + "name": "JUDO 0458", + "title": "Dignitary Harms" + }, + { + "name": "JUDO 0459", + "title": "International Commercial Mediation and Arbitration" + }, + { + "name": "JUDO 0460", + "title": "Trial Advocacy I " + }, + { + "name": "JUDO 0461", + "title": "Trial Advocacy II" + }, + { + "name": "JUDO 0462", + "title": "Transactional Practice I " + }, + { + "name": "JUDO 0463", + "title": "Transactional Practice II" + }, + { + "name": "JUDO 0464", + "title": "Draftng Solutn-Contracts" + }, + { + "name": "JUDO 0465", + "title": "Affirmative Action" + }, + { + "name": "JUDO 0466", + "title": "Intrnl Environmental Law" + }, + { + "name": "JUDO 0467", + "title": "International Intellectual Property" + }, + { + "name": "JUDO 0468", + "title": "Consumer Bankruptcy" + }, + { + "name": "JUDO 0469", + "title": "Spoken Language/Legl Pro" + }, + { + "name": "JUDO 0470", + "title": "Intl Negotiatn/Arbitratn" + }, + { + "name": "JUDO 0471", + "title": "Patent Prosecution" + }, + { + "name": "JUDO 0472", + "title": "Patent Litigation" + }, + { + "name": "JUDO 0473", + "title": "Biotechnology Law" + }, + { + "name": "JUDO 0474", + "title": "Adv Patent Litigation" + }, + { + "name": "JUDO 0475", + "title": "Adv Copyright Issues" + }, + { + "name": "JUDO 0476", + "title": "Business Intellectual Property" + }, + { + "name": "JUDO 0477", + "title": "Advocacy in Transactional Lawyering " + }, + { + "name": "JUDO 0478", + "title": "Cyberprivacy Law" + }, + { + "name": "JUDO 0479", + "title": "Appellate Advocacy" + }, + { + "name": "JUDO 0480", + "title": "Securities Litigation and Enforcement" + }, + { + "name": "JUDO 0481", + "title": "Environmental Law/Policy" + }, + { + "name": "JUDO 0482", + "title": "Commercial Bankruptcy Practice and Procedures " + }, + { + "name": "JUDO 0483", + "title": "Transnational Insolvency" + }, + { + "name": "JUDO 0484", + "title": "Global Climate Chng Law" + }, + { + "name": "JUDO 0485", + "title": "Drug Products Liability" + }, + { + "name": "JUDO 0486", + "title": "Law and Economics" + }, + { + "name": "JUDO 0487", + "title": "Adv Case Law Methods" + }, + { + "name": "JUDO 0488", + "title": "Legsltv-Regulatory Advcy" + }, + { + "name": "JUDO 0489", + "title": "Corruption Law and Policy" + }, + { + "name": "JUDO 0490", + "title": "Doing Business on the Internet: The Law of E-Commerce" + }, + { + "name": "JUDO 0491", + "title": "Law & Higher Education" + }, + { + "name": "JUDO 0492", + "title": "Gaming Law" + }, + { + "name": "JUDO 0493", + "title": "Constitutional History" + }, + { + "name": "JUDO 0494", + "title": "Advising the Multinational Company on Global Legal Issues" + }, + { + "name": "JUDO 0495", + "title": "Family Law: Theory/Policy" + }, + { + "name": "JUDO 0496", + "title": "Legal, Professional and Business Aspects of Law Practice" + }, + { + "name": "JUDO 0497", + "title": "International Health Law" + }, + { + "name": "JUDO 0498", + "title": "Election Law" + }, + { + "name": "JUDO 0499", + "title": "Constitutional Litigatn" + }, + { + "name": "JUDO 0500", + "title": "Admiralty" + }, + { + "name": "JUDO 0501", + "title": "Adv Crim Pro: Defense" + }, + { + "name": "JUDO 0502", + "title": "Criminal Law II" + }, + { + "name": "JUDO 0503", + "title": "Criminal Appellate Procedure" + }, + { + "name": "JUDO 0504", + "title": "Antitrust " + }, + { + "name": "JUDO 0505", + "title": "Criminal Procedure II" + }, + { + "name": "JUDO 0506", + "title": "Banking and Financial Reg" + }, + { + "name": "JUDO 0507", + "title": "Condominiums & Cooperatives" + }, + { + "name": "JUDO 0508", + "title": "Corporations " + }, + { + "name": "JUDO 0509", + "title": "Comparative Constitutional Law" + }, + { + "name": "JUDO 0510", + "title": "Business Planning" + }, + { + "name": "JUDO 0511", + "title": "Corporate Taxation " + }, + { + "name": "JUDO 0512", + "title": "Social Science Methodology" + }, + { + "name": "JUDO 0513", + "title": "Aviation Law" + }, + { + "name": "JUDO 0514", + "title": "Intl Commercial Trans" + }, + { + "name": "JUDO 0515", + "title": "Media and Telecommunications Law" + }, + { + "name": "JUDO 0516", + "title": "Comparative Law: Africa" + }, + { + "name": "JUDO 0517", + "title": "Civil Procedure II" + }, + { + "name": "JUDO 0518", + "title": "Comparative Law " + }, + { + "name": "JUDO 0519", + "title": "Custom-Common Law-Africa" + }, + { + "name": "JUDO 0520", + "title": "Adv European Union Law" + }, + { + "name": "JUDO 0521", + "title": "Com Law: Dispute Settlement" + }, + { + "name": "JUDO 0522", + "title": "Conflict of Laws" + }, + { + "name": "JUDO 0523", + "title": "Partnership Taxation" + }, + { + "name": "JUDO 0524", + "title": "Consumer Law and Litigation" + }, + { + "name": "JUDO 0525", + "title": "Corporate Finance" + }, + { + "name": "JUDO 0526", + "title": "State Constitutional Law" + }, + { + "name": "JUDO 0527", + "title": "China/Bus WTO Regime" + }, + { + "name": "JUDO 0528", + "title": "Corporate Reorganization: Chapter 11 Bankruptcy" + }, + { + "name": "JUDO 0529", + "title": "Adv Con Law: Equal Protct" + }, + { + "name": "JUDO 0530", + "title": "Bankruptcy" + }, + { + "name": "JUDO 0531", + "title": "Corrections Law" + }, + { + "name": "JUDO 0532", + "title": "Criminal Procedure I" + }, + { + "name": "JUDO 0533", + "title": "Com Land Use & Envrnmnt" + }, + { + "name": "JUDO 0534", + "title": "Education Law" + }, + { + "name": "JUDO 0535", + "title": "Entertainment Law" + }, + { + "name": "JUDO 0536", + "title": "Environmental Law" + }, + { + "name": "JUDO 0537", + "title": "Employment Discrimination" + }, + { + "name": "JUDO 0538", + "title": "Estate Counseling" + }, + { + "name": "JUDO 0539", + "title": "Adv Evdnc: Prsmpt/Con Lmt" + }, + { + "name": "JUDO 0540", + "title": "Evidence" + }, + { + "name": "JUDO 0541", + "title": "Adv Evidence/Trl Tactics" + }, + { + "name": "JUDO 0542", + "title": "Federal Courts and Jurisdiction" + }, + { + "name": "JUDO 0543", + "title": "Federal Practice" + }, + { + "name": "JUDO 0544", + "title": "Estate and Gift Taxation" + }, + { + "name": "JUDO 0545", + "title": "Intrnl Contrl Environmnt" + }, + { + "name": "JUDO 0546", + "title": "Food and Drug Law" + }, + { + "name": "JUDO 0547", + "title": "Introduction to Intellectual Property" + }, + { + "name": "JUDO 0548", + "title": "Housing" + }, + { + "name": "JUDO 0549", + "title": "Insurance Law" + }, + { + "name": "JUDO 0550", + "title": "Immigration Law" + }, + { + "name": "JUDO 0551", + "title": "Trademarks and Unfair Competition" + }, + { + "name": "JUDO 0552", + "title": "Patent Law" + }, + { + "name": "JUDO 0553", + "title": "Copyrights" + }, + { + "name": "JUDO 0554", + "title": "International Investment and Trade Policies" + }, + { + "name": "JUDO 0555", + "title": "Environmental Law Problm" + }, + { + "name": "JUDO 0556", + "title": "International Law" + }, + { + "name": "JUDO 0557", + "title": "Interviewing, Negotiating and Counseling" + }, + { + "name": "JUDO 0558", + "title": "Introduction to Trial Advocacy" + }, + { + "name": "JUDO 0559", + "title": "Jurisprudence" + }, + { + "name": "JUDO 0560", + "title": "Juvenile Justice" + }, + { + "name": "JUDO 0561", + "title": "Public Employment Law" + }, + { + "name": "JUDO 0562", + "title": "Labor Law" + }, + { + "name": "JUDO 0563", + "title": "ATA/Persuasion Elements" + }, + { + "name": "JUDO 0564", + "title": "Land Use Planning" + }, + { + "name": "JUDO 0565", + "title": "Advanced Trial Advocacy (Criminal)" + }, + { + "name": "JUDO 0566", + "title": "Mental Health Law" + }, + { + "name": "JUDO 0567", + "title": "Law Science & Technology" + }, + { + "name": "JUDO 0568", + "title": "Family Law" + }, + { + "name": "JUDO 0569", + "title": "Advanced Trial Advocacy (Civil)" + }, + { + "name": "JUDO 0570", + "title": "Accounting for Lawyers" + }, + { + "name": "JUDO 0571", + "title": "International Taxation" + }, + { + "name": "JUDO 0572", + "title": "Intl Tax Joint Ventures" + }, + { + "name": "JUDO 0573", + "title": "State/Local Tax Finance" + }, + { + "name": "JUDO 0574", + "title": "State and Local Government Law" + }, + { + "name": "JUDO 0575", + "title": "Legislation" + }, + { + "name": "JUDO 0576", + "title": "Payment Systems" + }, + { + "name": "JUDO 0577", + "title": "Business Taxation" + }, + { + "name": "JUDO 0578", + "title": "Political and Civil Rights" + }, + { + "name": "JUDO 0579", + "title": "Contractual Relations" + }, + { + "name": "JUDO 0580", + "title": "Legal Advocacy/Socl Chng" + }, + { + "name": "JUDO 0581", + "title": "Adm Pro: Grants/Benefits" + }, + { + "name": "JUDO 0582", + "title": "Products Liability" + }, + { + "name": "JUDO 0583", + "title": "International Protection of Human Rights" + }, + { + "name": "JUDO 0584", + "title": "Public Utilities" + }, + { + "name": "JUDO 0585", + "title": "Racism & Law" + }, + { + "name": "JUDO 0586", + "title": "Real Estate Development Finance" + }, + { + "name": "JUDO 0587", + "title": "Real Estate Transactions" + }, + { + "name": "JUDO 0588", + "title": "Remedies" + }, + { + "name": "JUDO 0589", + "title": "Secured Transactions" + }, + { + "name": "JUDO 0590", + "title": "Securities Regulation" + }, + { + "name": "JUDO 0591", + "title": "Social Legislation: Law and the Elderly" + }, + { + "name": "JUDO 0592", + "title": "State & Local Taxation" + }, + { + "name": "JUDO 0593", + "title": "Product Safety" + }, + { + "name": "JUDO 0594", + "title": "Status & Process" + }, + { + "name": "JUDO 0595", + "title": "Econ/Stat Experts Litgtn" + }, + { + "name": "JUDO 0596", + "title": "Adv Crim Pro Corr & Sanct" + }, + { + "name": "JUDO 0597", + "title": "Adv Business Taxation" + }, + { + "name": "JUDO 0598", + "title": "Real Estate Problems" + }, + { + "name": "JUDO 0599", + "title": "Mass Media-Law of Torts" + }, + { + "name": "JUDO 0600", + "title": "Taxation" + }, + { + "name": "JUDO 0601", + "title": "Sports Law" + }, + { + "name": "JUDO 0602", + "title": "Trusts and Estates " + }, + { + "name": "JUDO 0603", + "title": "Unfair Trade Practices" + }, + { + "name": "JUDO 0604", + "title": "Urban Transportation" + }, + { + "name": "JUDO 0605", + "title": "Public Administration" + }, + { + "name": "JUDO 0606", + "title": "Women and the Law" + }, + { + "name": "JUDO 0607", + "title": "Comparative Law: Roman" + }, + { + "name": "JUDO 0608", + "title": "American Legal History" + }, + { + "name": "JUDO 0609", + "title": "Civil Rights/Disabilities" + }, + { + "name": "JUDO 0610", + "title": "Workers' Compensation" + }, + { + "name": "JUDO 0611", + "title": "Collective Bargaining" + }, + { + "name": "JUDO 0612", + "title": "Constitutional Law and Foreign Policy" + }, + { + "name": "JUDO 0613", + "title": "Health Care Law: Bioethics " + }, + { + "name": "JUDO 0614", + "title": "Health Care Law: Medical Malpractice " + }, + { + "name": "JUDO 0615", + "title": "Health Care Law: Regulation and Financing" + }, + { + "name": "JUDO 0616", + "title": "Constnl Torts & Remedies" + }, + { + "name": "JUDO 0617", + "title": "Health Care 21st Century" + }, + { + "name": "JUDO 0618", + "title": "Government Contract Law" + }, + { + "name": "JUDO 0619", + "title": "Human Rights/Emergency" + }, + { + "name": "JUDO 0620", + "title": "Exclusionary Zoning" + }, + { + "name": "JUDO 0621", + "title": "Victimology" + }, + { + "name": "JUDO 0622", + "title": "Sales" + }, + { + "name": "JUDO 0623", + "title": "Alternative Dispute Resolution " + }, + { + "name": "JUDO 0624", + "title": "Fed American Indian Law" + }, + { + "name": "JUDO 0625", + "title": "Employment Law" + }, + { + "name": "JUDO 0626", + "title": "Tax Policy" + }, + { + "name": "JUDO 0627", + "title": "Litigation Strategy" + }, + { + "name": "JUDO 0628", + "title": "Ethical Perspectives Law" + }, + { + "name": "JUDO 0629", + "title": "Privacy" + }, + { + "name": "JUDO 0630", + "title": "Trusts & Estates II" + }, + { + "name": "JUDO 0631", + "title": "Public Health Law" + }, + { + "name": "JUDO 0632", + "title": "Federalism" + }, + { + "name": "JUDO 0633", + "title": "First Amendment " + }, + { + "name": "JUDO 0634", + "title": "Religious Rights" + }, + { + "name": "JUDO 0635", + "title": "Computer Law" + }, + { + "name": "JUDO 0636", + "title": "Intl Employmnt Relations" + }, + { + "name": "JUDO 0637", + "title": "International Commercial Transactions " + }, + { + "name": "JUDO 0638", + "title": "Comparatve Corporate Law" + }, + { + "name": "JUDO 0639", + "title": "Adv Securities Regulatn" + }, + { + "name": "JUDO 0640", + "title": "ADR: Negotiating Settlements" + }, + { + "name": "JUDO 0641", + "title": "Taxation II: Commercial and Property Transactions" + }, + { + "name": "JUDO 0642", + "title": "International Organizations" + }, + { + "name": "JUDO 0643", + "title": "Law of Public Finance" + }, + { + "name": "JUDO 0644", + "title": "Pension/Employee Benefit" + }, + { + "name": "JUDO 0645", + "title": "Parents, Children and the State" + }, + { + "name": "JUDO 0646", + "title": "Intrnl Litgtn & Arbitrtn" + }, + { + "name": "JUDO 0647", + "title": "Federal Criminal Law" + }, + { + "name": "JUDO 0648", + "title": "Islamic Law" + }, + { + "name": "JUDO 0649", + "title": "Church-St Relatns Israel" + }, + { + "name": "JUDO 0650", + "title": "Corporate Transactions: Analysis and Implementation" + }, + { + "name": "JUDO 0651", + "title": "U.S. Business Planning for International Transactions" + }, + { + "name": "JUDO 0652", + "title": "Cyberlaw and Policy: Practical Applications in Organizational Settings" + }, + { + "name": "JUDO 0653", + "title": "Immigration Law & Policy" + }, + { + "name": "JUDO 0654", + "title": "Business Immigration Law" + }, + { + "name": "JUDO 0655", + "title": "Mediation Advocacy & Practice" + }, + { + "name": "JUDO 0656", + "title": "Law & Medicine Problems" + }, + { + "name": "JUDO 0657", + "title": "Religion-Workplace/Socty" + }, + { + "name": "JUDO 0658", + "title": "Globalization and the Constitution" + }, + { + "name": "JUDO 0659", + "title": "The Global Workplace" + }, + { + "name": "JUDO 0660", + "title": "Money Laundering" + }, + { + "name": "JUDO 0661", + "title": "Animal Law" + }, + { + "name": "JUDO 0662", + "title": "Drafting and Negotiating Real Estate Documents " + }, + { + "name": "JUDO 0663", + "title": "Special Education Law in the United States " + }, + { + "name": "JUDO 0664", + "title": "Working Parents and the Law" + }, + { + "name": "JUDO 0665", + "title": "International Criminal Law" + }, + { + "name": "JUDO 0666", + "title": "E-Discovery: Preservation through Presentation in the Digital Age" + }, + { + "name": "JUDO 0667", + "title": "Commercial Litigation Strategy" + }, + { + "name": "JUDO 0668", + "title": "Advertising and Marketing Law" + }, + { + "name": "JUDO 0669", + "title": "Advanced Trial Advocacy (Speech Making)" + }, + { + "name": "JUDO 0670", + "title": "Tax Practicum" + }, + { + "name": "JUDO 0672", + "title": "Low Income Taxpayer Policy and Practice" + }, + { + "name": "JUDO 0673", + "title": "Taxation of S Corporations" + }, + { + "name": "JUDO 0674", + "title": "PA Divorce Law & Practice" + }, + { + "name": "JUDO 0675", + "title": "Prosecution in the 21st Century" + }, + { + "name": "JUDO 0676", + "title": "Legal Issues in Business Strategic Planning" + }, + { + "name": "JUDO 0677", + "title": "Experiential Practicum" + }, + { + "name": "JUDO 0680", + "title": "Presidential Leadership and Individual Rights" + }, + { + "name": "JUDO 0681", + "title": "Public Advocacy for Social Change" + }, + { + "name": "JUDO 0684", + "title": "Natural Resources Law" + }, + { + "name": "JUDO 0685", + "title": "Oil and Gas Law" + }, + { + "name": "JUDO 0686", + "title": "Real Estate Development Law and Practice" + }, + { + "name": "JUDO 0687", + "title": "Strategy and Ethics in Trial Practice" + }, + { + "name": "JUDO 0688", + "title": "The Role of In-House Counsel" + }, + { + "name": "JUDO 0689", + "title": "Franchise Law" + }, + { + "name": "JUDO 0690", + "title": "Energy Law and Regulation" + }, + { + "name": "JUDO 0691", + "title": "International Financial Law" + }, + { + "name": "JUDO 0692", + "title": "Habeas Corpus" + }, + { + "name": "JUDO 0700", + "title": "Tort Litigation and Trial Practice (SEPTA)" + }, + { + "name": "JUDO 0701", + "title": "Death Penalty Litigation" + }, + { + "name": "JUDO 0702", + "title": "Business Law" + }, + { + "name": "JUDO 0703", + "title": "Public Interest Advocacy" + }, + { + "name": "JUDO 0704", + "title": "Temple Legal Aid Office: Family Law Litigation Clinic" + }, + { + "name": "JUDO 0705", + "title": "Homeless Advocacy Law" + }, + { + "name": "JUDO 0706", + "title": "Adv Civil Trial Advocacy" + }, + { + "name": "JUDO 0707", + "title": "Civil Litigation" + }, + { + "name": "JUDO 0708", + "title": "Collective Bargaining" + }, + { + "name": "JUDO 0709", + "title": "Phila Vlntr Lawyers/Arts" + }, + { + "name": "JUDO 0710", + "title": "Legislation" + }, + { + "name": "JUDO 0711", + "title": "Local Government" + }, + { + "name": "JUDO 0712", + "title": "Consumer Legislation" + }, + { + "name": "JUDO 0713", + "title": "Small Claims Mediation" + }, + { + "name": "JUDO 0714", + "title": "Criminal Defense Advocacy: Camden Public Defender" + }, + { + "name": "JUDO 0715", + "title": "Environmental Law-Delaware Riverkeeper Network" + }, + { + "name": "JUDO 0716", + "title": "Criminal Defense Advocacy: Defender Association of Philadelphia" + }, + { + "name": "JUDO 0717", + "title": "Federal Criminal Practice: Federal Defender" + }, + { + "name": "JUDO 0718", + "title": "Criminal Litigation" + }, + { + "name": "JUDO 0719", + "title": "Criminal Prosctn: Camden" + }, + { + "name": "JUDO 0720", + "title": "Criminal Prosecution: Philadelphia District Attorney" + }, + { + "name": "JUDO 0721", + "title": "Montgomery County DA" + }, + { + "name": "JUDO 0722", + "title": "Law Education & Partcptn" + }, + { + "name": "JUDO 0723", + "title": "Vip-Negligence Litagatn" + }, + { + "name": "JUDO 0724", + "title": "Federal Criminal Practice: United States Attorney" + }, + { + "name": "JUDO 0725", + "title": "Criminal Prosecution: Bucks County District Attorney" + }, + { + "name": "JUDO 0726", + "title": "Federal Judicial Clerkship" + }, + { + "name": "JUDO 0727", + "title": "Constitution Litigation" + }, + { + "name": "JUDO 0728", + "title": "Federal Criminal Practice: Health Care Fraud" + }, + { + "name": "JUDO 0729", + "title": "Fed Civ Rts/Labor Law" + }, + { + "name": "JUDO 0730", + "title": "Elderly Law Project" + }, + { + "name": "JUDO 0731", + "title": "Philadelphia Housing Court" + }, + { + "name": "JUDO 0732", + "title": "Women Against Abuse" + }, + { + "name": "JUDO 0733", + "title": "City Solicitor: Mntl Hlth" + }, + { + "name": "JUDO 0734", + "title": "City Solicitor: Adoption" + }, + { + "name": "JUDO 0735", + "title": "City Solicitor: Claims Litigation" + }, + { + "name": "JUDO 0736", + "title": "Sexual Orientation and Gender Identity Law Practice" + }, + { + "name": "JUDO 0737", + "title": "Criminal Prosecution" + }, + { + "name": "JUDO 0738", + "title": "Temple Legal Aid Office: Domestic Relations Mediation" + }, + { + "name": "JUDO 0739", + "title": "Reprsntng Charitable Org" + }, + { + "name": "JUDO 0740", + "title": "Temple Legal Aid: Bankruptcy" + }, + { + "name": "JUDO 0741", + "title": "Philadelphia District Attorney: Charging Unit" + }, + { + "name": "JUDO 0742", + "title": "American Red Cross Southeastern PA Disaster Relief Clinic" + }, + { + "name": "JUDO 0743", + "title": "Medical-Legal Partnership Clinical Program" + }, + { + "name": "JUDO 0750", + "title": "Immigration Law" + }, + { + "name": "JUDO 0751", + "title": "Ethics in Practice" + }, + { + "name": "JUDO 0752", + "title": "Pennsylvania Innocence Project" + }, + { + "name": "JUDO 0753", + "title": "Consumer Bankruptcy Assistance Project" + }, + { + "name": "JUDO 0754", + "title": "Domestic Violence" + }, + { + "name": "JUDO 0755", + "title": "Domestic Violence: Philadelphia Family Court" + }, + { + "name": "JUDO 0756", + "title": "State Judicial Clerkship" + }, + { + "name": "JUDO 0759", + "title": "Federal Appellate Litigation Clinic" + }, + { + "name": "JUDO 0760", + "title": "City Slctr: Code Enfrcmnt" + }, + { + "name": "JUDO 0763", + "title": "Civil Rights for Inmates" + }, + { + "name": "JUDO 0765", + "title": "Temple Legal Aid Office: Civil Practice for Clients with Health Care Issues" + }, + { + "name": "JUDO 0766", + "title": "Federal Estate & Gift Tax" + }, + { + "name": "JUDO 0767", + "title": "Collective Bargaining" + }, + { + "name": "JUDO 0768", + "title": "Community Legal Services" + }, + { + "name": "JUDO 0769", + "title": "United States Attorney: Bankruptcy Unit" + }, + { + "name": "JUDO 0770", + "title": "Juvenile Rights Clinic" + }, + { + "name": "JUDO 0771", + "title": "Consumer Legislation" + }, + { + "name": "JUDO 0775", + "title": "Advanced Clinical Intensive: Temple Legal Aid Civil Practice for Clients with Health Care Issues" + }, + { + "name": "JUDO 0776", + "title": "Temple Legal Aid Office: Advanced Family Law Litigation Clinic" + }, + { + "name": "JUDO 0780", + "title": "Temple Summer Professional Experience Curriculum" + }, + { + "name": "JUDO 0781", + "title": "Social Justice Lawyering Clinic" + }, + { + "name": "JUDO 0782", + "title": "Advanced Clinical Intensive: Social Justice Lawyering Clinic" + }, + { + "name": "JUDO 0783", + "title": "Federal Reentry Court Clinic" + }, + { + "name": "JUDO 0784", + "title": "Justice Lab Clinic" + }, + { + "name": "JUDO 0785", + "title": "Community Lawyering: Temple Legal Aid Office" + }, + { + "name": "JUDO 0790", + "title": "Access to Justice Clinic" + }, + { + "name": "JUDO 0794", + "title": "Advanced Clinical Intensive: Justice Lab" + }, + { + "name": "JUDO 0795", + "title": "Advanced Clinical Intensive: Community Lawyering Temple Legal Aid Office" + }, + { + "name": "JUDO 0796", + "title": "Lawyering for the Indigent Intensive Clinic" + }, + { + "name": "JUDO 0800", + "title": "Advanced Antitrust" + }, + { + "name": "JUDO 0801", + "title": "Adv Con Law: Equal Protct" + }, + { + "name": "JUDO 0802", + "title": "Adv Corporate Problems" + }, + { + "name": "JUDO 0803", + "title": "African Customary Law" + }, + { + "name": "JUDO 0804", + "title": "Education Law" + }, + { + "name": "JUDO 0805", + "title": "Employment Discrmination" + }, + { + "name": "JUDO 0806", + "title": "Professional Responsibility" + }, + { + "name": "JUDO 0807", + "title": "Corporate Tax Planning" + }, + { + "name": "JUDO 0808", + "title": "Health Care Law: Bioethics " + }, + { + "name": "JUDO 0809", + "title": "Collective Bargaining" + }, + { + "name": "JUDO 0810", + "title": "Adm Pro: Grants/Benefits" + }, + { + "name": "JUDO 0811", + "title": "Adv Evidence/Trl Tactics" + }, + { + "name": "JUDO 0812", + "title": "Health Care: Reg & Financng" + }, + { + "name": "JUDO 0813", + "title": "Law Economics & Morality" + }, + { + "name": "JUDO 0814", + "title": "Comparative Criminal Law" + }, + { + "name": "JUDO 0815", + "title": "Criminal Appellate Procedure" + }, + { + "name": "JUDO 0816", + "title": "Adv Crim Pro: Advocacy" + }, + { + "name": "JUDO 0817", + "title": "Law, Science and Technology" + }, + { + "name": "JUDO 0818", + "title": "Comparative Law: Roman" + }, + { + "name": "JUDO 0819", + "title": "Comparative Law: China" + }, + { + "name": "JUDO 0820", + "title": "Adv Crim Procedure: Prblm" + }, + { + "name": "JUDO 0821", + "title": "Insurance" + }, + { + "name": "JUDO 0822", + "title": "Current Issues in Family Law" + }, + { + "name": "JUDO 0823", + "title": "Adv Evidence: Scientific" + }, + { + "name": "JUDO 0824", + "title": "Environmental Law" + }, + { + "name": "JUDO 0825", + "title": "Corporate Finance" + }, + { + "name": "JUDO 0826", + "title": "Land Use Law & Process" + }, + { + "name": "JUDO 0827", + "title": "Legal Problems Small Bus" + }, + { + "name": "JUDO 0828", + "title": "Adv Securities Regulatn" + }, + { + "name": "JUDO 0829", + "title": "Banking and Financial Reg" + }, + { + "name": "JUDO 0830", + "title": "Comparative Antitrust" + }, + { + "name": "JUDO 0831", + "title": "Computer Law" + }, + { + "name": "JUDO 0832", + "title": "Consumer Problems" + }, + { + "name": "JUDO 0833", + "title": "Selected Problems in Philosophy of Law" + }, + { + "name": "JUDO 0834", + "title": "White Collar-Organzd Crm" + }, + { + "name": "JUDO 0835", + "title": "Appellate Advocacy" + }, + { + "name": "JUDO 0836", + "title": "Constitutional Litigatn" + }, + { + "name": "JUDO 0837", + "title": "Adv Constitutional Law" + }, + { + "name": "JUDO 0838", + "title": "Counseling Internl Inves" + }, + { + "name": "JUDO 0839", + "title": "Supreme Ct/Current Term" + }, + { + "name": "JUDO 0840", + "title": "Legislation" + }, + { + "name": "JUDO 0841", + "title": "International Protection of Human Rights" + }, + { + "name": "JUDO 0842", + "title": "Drug Products Liability " + }, + { + "name": "JUDO 0843", + "title": "Contrlling Noncompliance" + }, + { + "name": "JUDO 0844", + "title": "Entertainment Law" + }, + { + "name": "JUDO 0845", + "title": "Legal Advocacy Soc Chg" + }, + { + "name": "JUDO 0846", + "title": "Business Torts" + }, + { + "name": "JUDO 0847", + "title": "Environmental Law Problm" + }, + { + "name": "JUDO 0848", + "title": "Cyberspace" + }, + { + "name": "JUDO 0849", + "title": "Food & Drug" + }, + { + "name": "JUDO 0850", + "title": "Jurisprudence" + }, + { + "name": "JUDO 0851", + "title": "Jewish Law" + }, + { + "name": "JUDO 0852", + "title": "Captl Pun. Life Imprisnm" + }, + { + "name": "JUDO 0853", + "title": "Mental Health Law" + }, + { + "name": "JUDO 0854", + "title": "State/Local Tax Finance" + }, + { + "name": "JUDO 0855", + "title": "Introduction to Public Interest Law" + }, + { + "name": "JUDO 0856", + "title": "Adv Criminal Law:Prblems" + }, + { + "name": "JUDO 0857", + "title": "Real Estate Problems" + }, + { + "name": "JUDO 0858", + "title": "Select Prob in Evidence" + }, + { + "name": "JUDO 0859", + "title": "State Constitutional Law" + }, + { + "name": "JUDO 0860", + "title": "Tax Policy" + }, + { + "name": "JUDO 0861", + "title": "Civil Disobedience" + }, + { + "name": "JUDO 0862", + "title": "Copyrights" + }, + { + "name": "JUDO 0863", + "title": "Advanced Trial and Litigation Strategy " + }, + { + "name": "JUDO 0864", + "title": "Intrnl Control Environmn" + }, + { + "name": "JUDO 0865", + "title": "Advanced Jurisprudence" + }, + { + "name": "JUDO 0866", + "title": "Civil Rghts/Disabilities" + }, + { + "name": "JUDO 0867", + "title": "Juvenile Law" + }, + { + "name": "JUDO 0868", + "title": "American Legal History" + }, + { + "name": "JUDO 0869", + "title": "Real Estate Dev Finance" + }, + { + "name": "JUDO 0870", + "title": "Public Administration" + }, + { + "name": "JUDO 0871", + "title": "English Legal History" + }, + { + "name": "JUDO 0872", + "title": "Constitutional Law and Foreign Policy" + }, + { + "name": "JUDO 0873", + "title": "Comparatv Nonprofit Orgs" + }, + { + "name": "JUDO 0874", + "title": "Health Care Law: Medical Malpractice " + }, + { + "name": "JUDO 0875", + "title": "Estate Counseling" + }, + { + "name": "JUDO 0876", + "title": "Bus Mergers/Acquisitions" + }, + { + "name": "JUDO 0877", + "title": "Bus-Bankrptcy-Lit Ethics" + }, + { + "name": "JUDO 0878", + "title": "Sports Law" + }, + { + "name": "JUDO 0879", + "title": "Exclusionary Zoning" + }, + { + "name": "JUDO 0880", + "title": "International Law Problems" + }, + { + "name": "JUDO 0881", + "title": "Intl Investment & Trade" + }, + { + "name": "JUDO 0882", + "title": "Products Liability" + }, + { + "name": "JUDO 0883", + "title": "Complex Civil Litigation" + }, + { + "name": "JUDO 0884", + "title": "State/Local Government" + }, + { + "name": "JUDO 0885", + "title": "Relational Torts" + }, + { + "name": "JUDO 0886", + "title": "Constnl Torts & Remedies" + }, + { + "name": "JUDO 0887", + "title": "Real Estate Transactions" + }, + { + "name": "JUDO 0888", + "title": "Admnstratn Crim Justice" + }, + { + "name": "JUDO 0889", + "title": "Government Contract Law" + }, + { + "name": "JUDO 0890", + "title": "Condominiums & Cooperatives" + }, + { + "name": "JUDO 0891", + "title": "Law & Higher Education" + }, + { + "name": "JUDO 0892", + "title": "Constnl Evolution-Africa" + }, + { + "name": "JUDO 0893", + "title": "Adv Commerical Problems" + }, + { + "name": "JUDO 0894", + "title": "Criminal Litigation" + }, + { + "name": "JUDO 0895", + "title": "Intl Commercial Transctn" + }, + { + "name": "JUDO 0896", + "title": "Multinational Enterprses" + }, + { + "name": "JUDO 0897", + "title": "Persuasive Thinking" + }, + { + "name": "JUDO 0898", + "title": "Comparative Law" + }, + { + "name": "JUDO 0899", + "title": "Stigma and Deviance" + }, + { + "name": "JUDO 0900", + "title": "Guided Research" + }, + { + "name": "JUDO 0901", + "title": "Guided Research II" + }, + { + "name": "JUDO 0902", + "title": "Guided Research Serial" + }, + { + "name": "JUDO 0903", + "title": "Guided Research II Serial" + }, + { + "name": "JUDO 0905", + "title": "Temple Law Review" + }, + { + "name": "JUDO 0906", + "title": "Moot Court" + }, + { + "name": "JUDO 0907", + "title": "Intl/Compartv Law Journl" + }, + { + "name": "JUDO 0908", + "title": "Sci/Tech/Envrn Law Journl " + }, + { + "name": "JUDO 0909", + "title": "National Trial Team" + }, + { + "name": "JUDO 0910", + "title": "Poltcl/Cvl Rghts Journal" + }, + { + "name": "JUDO 0911", + "title": "Jessup Intl Moot Court" + }, + { + "name": "JUDO 0912", + "title": "International Law Colloquium" + }, + { + "name": "JUDO 0913", + "title": "Treaties" + }, + { + "name": "JUDO 0914", + "title": "Law of Investigations" + }, + { + "name": "JUDO 0915", + "title": "Human Rights/Euro Union" + }, + { + "name": "JUDO 0916", + "title": "Legal Ed/Practice of Law" + }, + { + "name": "JUDO 0917", + "title": "Sexual Orientation, Gender Identity and the Law" + }, + { + "name": "JUDO 0918", + "title": "Law & Feminism" + }, + { + "name": "JUDO 0919", + "title": "Crim Pro: Euro-Japan-US" + }, + { + "name": "JUDO 0920", + "title": "Adv European Union Law" + }, + { + "name": "JUDO 0921", + "title": "Law/Electronic Commerce" + }, + { + "name": "JUDO 0922", + "title": "Derivative Securities and their Regulation" + }, + { + "name": "JUDO 0923", + "title": "Intl/Comprtv Family Law" + }, + { + "name": "JUDO 0924", + "title": "Fed American Indian Law" + }, + { + "name": "JUDO 0925", + "title": "Japanese Law" + }, + { + "name": "JUDO 0926", + "title": "Transactional Skills Workshop" + }, + { + "name": "JUDO 0927", + "title": "Comnty Economic Devlpmnt" + }, + { + "name": "JUDO 0928", + "title": "Intrnl Litgtn & Arbitrtn" + }, + { + "name": "JUDO 0929", + "title": "Gaming Law" + }, + { + "name": "JUDO 0930", + "title": "Crim Law-Changng Society" + }, + { + "name": "JUDO 0931", + "title": "Human Rights/Jewish Law" + }, + { + "name": "JUDO 0932", + "title": "Criminal Procedure II" + }, + { + "name": "JUDO 0933", + "title": "Land Use Planning" + }, + { + "name": "JUDO 0934", + "title": "Law of European Union" + }, + { + "name": "JUDO 0935", + "title": "International Taxation" + }, + { + "name": "JUDO 0936", + "title": "Intl Employmnt Relations" + }, + { + "name": "JUDO 0937", + "title": "Corp Law/Policy in Banking" + }, + { + "name": "JUDO 0938", + "title": "Comparatve Corporate Law" + }, + { + "name": "JUDO 0939", + "title": "Adv Con Law: Con Theory" + }, + { + "name": "JUDO 0940", + "title": "Patent Law" + }, + { + "name": "JUDO 0941", + "title": "Trademarks/Unfair Comptn" + }, + { + "name": "JUDO 0942", + "title": "Women and the Law: Domestic Violence, Rape and Harrassment" + }, + { + "name": "JUDO 0943", + "title": "Constnl Lmts Reg Commrce" + }, + { + "name": "JUDO 0944", + "title": "Legal Research and Writing III: Advanced Persuasive Strategies" + }, + { + "name": "JUDO 0945", + "title": "Advanced Legal Analysis" + }, + { + "name": "JUDO 0946", + "title": "Law & Social Science" + }, + { + "name": "JUDO 0947", + "title": "Environmental Law/Policy" + }, + { + "name": "JUDO 0948", + "title": "Health Med Law Socl Plcy" + }, + { + "name": "JUDO 0949", + "title": "Lawyering for Organiztns" + }, + { + "name": "JUDO 0950", + "title": "Human Rights/Emergency" + }, + { + "name": "JUDO 0951", + "title": "Com Law: Dispute Settlmnt" + }, + { + "name": "JUDO 0952", + "title": "Law Justice & Morality" + }, + { + "name": "JUDO 0953", + "title": "Comparative Constnl Law" + }, + { + "name": "JUDO 0954", + "title": "Public Health Law" + }, + { + "name": "JUDO 0955", + "title": "Dignitary Harms" + }, + { + "name": "JUDO 0956", + "title": "Natl/Multicultural Rghts" + }, + { + "name": "JUDO 0957", + "title": "Religion-Workplace/Socty" + }, + { + "name": "JUDO 0958", + "title": "Law & Popular Culture" + }, + { + "name": "JUDO 0959", + "title": "The Global Workplace" + }, + { + "name": "JUDO 0960", + "title": "Privacy" + }, + { + "name": "JUDO 0961", + "title": "Ethical Perspectives on the Practice of Law" + }, + { + "name": "JUDO 0962", + "title": "Federalism" + }, + { + "name": "JUDO 0963", + "title": "First Amendment " + }, + { + "name": "JUDO 0964", + "title": "Legislation and Public Policy" + }, + { + "name": "JUDO 0965", + "title": "Religious Rights Under the United States Constitution" + }, + { + "name": "JUDO 0966", + "title": "Governing the Workplace" + }, + { + "name": "JUDO 0967", + "title": "Sales" + }, + { + "name": "JUDO 0968", + "title": "Theories of Property" + }, + { + "name": "JUDO 0969", + "title": "Current Problems in Law and Medicine" + }, + { + "name": "JUDO 0970", + "title": "Strict Liabilty-Products" + }, + { + "name": "JUDO 0971", + "title": "Adv Administrative Law" + }, + { + "name": "JUDO 0972", + "title": "Citznshp Immgrtn Refugee" + }, + { + "name": "JUDO 0973", + "title": "Accounting for Lawyers" + }, + { + "name": "JUDO 0974", + "title": "Civil Procedure II" + }, + { + "name": "JUDO 0975", + "title": "Death Penalty" + }, + { + "name": "JUDO 0976", + "title": "Lender Liability" + }, + { + "name": "JUDO 0977", + "title": "Corporate Law" + }, + { + "name": "JUDO 0978", + "title": "Parents/Children/State" + }, + { + "name": "JUDO 0979", + "title": "Affirmative Action" + }, + { + "name": "JUDO 0980", + "title": "Equity in Jewish Law" + }, + { + "name": "JUDO 0981", + "title": "Advanced Patent Law" + }, + { + "name": "JUDO 0982", + "title": "Abortion" + }, + { + "name": "JUDO 0983", + "title": "Advanced Immigration Law" + }, + { + "name": "JUDO 0984", + "title": "National Security Law" + }, + { + "name": "JUDO 0985", + "title": "Unincorprtd Bus Assoctns" + }, + { + "name": "JUDO 0986", + "title": "Law and Economics" + }, + { + "name": "JUDO 0987", + "title": "Adv Case Law Methods" + }, + { + "name": "JUDO 0988", + "title": "Legsltv-Regulatory Advcy" + }, + { + "name": "JUDO 0989", + "title": "Law in Asia" + }, + { + "name": "JUDO 0990", + "title": "Law Happiness & Meaning" + }, + { + "name": "JUDO 0991", + "title": "International Development Law and Policy" + }, + { + "name": "JUDO 0992", + "title": "Conflict of Laws" + }, + { + "name": "JUDO 0993", + "title": "Constitutional History" + }, + { + "name": "JUDO 0994", + "title": "Race & Ethnicity" + }, + { + "name": "JUDO 0995", + "title": "Family Law: Theory, Policy and Practice " + }, + { + "name": "JUDO 0996", + "title": "Post-Conflict and Transitional Justice" + }, + { + "name": "JUDO 0997", + "title": "International Health Law" + }, + { + "name": "JUDO 0998", + "title": "Current Issues in Civil Rights Law" + }, + { + "name": "JUDO 0999", + "title": "Anatomy for Litigators" + }, + { + "name": "JUDO 1000", + "title": "Trial Team - Pretrial Motions" + }, + { + "name": "JUDO 1001", + "title": "Trial Team - Evidence and Strategy" + }, + { + "name": "JUDO 1002", + "title": "Psychology and the Law" + }, + { + "name": "JUDO 1003", + "title": "Refugee Law and Policy" + }, + { + "name": "JUDO 1004", + "title": "Law and Human Behavior Colloquium" + }, + { + "name": "JUDO 1005", + "title": "Intl/Rsltn Armed Conflct" + }, + { + "name": "JUDO 1006", + "title": "Political and Civil Rights" + }, + { + "name": "JUDO 1007", + "title": "Climate Change Law and Policy" + }, + { + "name": "JUDO 1008", + "title": "Developing Children's Rights" + }, + { + "name": "JUDO 1009", + "title": "The Jury" + }, + { + "name": "JUDO 1011", + "title": "Law, Emotions and Neuroscience" + }, + { + "name": "JUDO 1012", + "title": "Crimes and Immigration" + }, + { + "name": "JUDO 1013", + "title": "Selected Issues in Federal Criminal Law and its Enforcement" + }, + { + "name": "JUDO 1014", + "title": "Emerging Trends in Labor Law" + }, + { + "name": "JUDO 1015", + "title": "Advanced Legal Writing: Effective Motion Practice in Civil Litigation" + }, + { + "name": "JUDO 1016", + "title": "Modern Depositions" + }, + { + "name": "JUDO 1017", + "title": "Privacy in Employment Law" + }, + { + "name": "JUDO 1018", + "title": "Immigrant Low Wage Workers in a Global Economy" + }, + { + "name": "JUDO 1019", + "title": "Citizenship in Constitutional Perspective" + }, + { + "name": "JUDO 1020", + "title": "Legal and Clinical Approaches to Healthcare" + }, + { + "name": "JUDO 1021", + "title": "Tax Policy and Administration Colloquium" + }, + { + "name": "JUDO 1022", + "title": "Foundations of International Criminal Law" + }, + { + "name": "JUDO 1023", + "title": "Legislation and Regulation" + }, + { + "name": "JUDO 1024", + "title": "Chinese Law" + }, + { + "name": "JUDO 1025", + "title": "Law and Public Policy II" + }, + { + "name": "JUDO 1026", + "title": "Access to Justice in Civil Matters" + }, + { + "name": "JUDO 1027", + "title": "Innocence and Wrongful Convictions" + }, + { + "name": "JUDO 1028", + "title": "Legal Research and Writing III: Civil Litigation" + }, + { + "name": "JUDO 1029", + "title": "Advanced Financial Regulation: Corporate Scandals and Crises" + }, + { + "name": "JUDO 1030", + "title": "Forensic Evidence, Science, and Medicine" + }, + { + "name": "JUDO 1031", + "title": "The Science of Legal Persuasion" + }, + { + "name": "JUDO 1032", + "title": "Comparative Family Law" + }, + { + "name": "JUDO 1033", + "title": "Families in Law and Public Policy" + }, + { + "name": "JUDO 1034", + "title": "Disability Law and Policy" + }, + { + "name": "JUDO 1035", + "title": "Custody Law" + }, + { + "name": "JUDO 1036", + "title": "Low Income Taxpayer Policy and Practice" + }, + { + "name": "JUDO 1037", + "title": "Advanced Employment Discrimination" + }, + { + "name": "JUDO 1038", + "title": "Comparative Corporate Governance" + }, + { + "name": "JUDO 1039", + "title": "Race and the Law" + }, + { + "name": "JUDO 1041", + "title": "Poverty Law" + }, + { + "name": "JUDO 1042", + "title": "Legal Research and Writing III: Experts in Civil Litigation" + }, + { + "name": "JUDO 1044", + "title": "Advanced Legal Research" + }, + { + "name": "JUDO 1045", + "title": "Reproductive Health, Rights and Justice" + }, + { + "name": "JUDO 1047", + "title": "Internet Law" + }, + { + "name": "JUDO 1048", + "title": "Ethical Perspectives on Law" + }, + { + "name": "JUDO 1049", + "title": "Advanced Topics in Contract Law" + }, + { + "name": "JUDO 1051", + "title": "Environmental Compliance and Enforcement" + }, + { + "name": "JUDO 1052", + "title": "International Compliance" + }, + { + "name": "JUDO 1053", + "title": "Mindful Lawyering: Techniques for Effective Counseling, Negotiation and Advocacy" + }, + { + "name": "JUDO 1054", + "title": "Regulating Cyberthreats" + }, + { + "name": "JUDO 1055", + "title": "Treaties and Negotiations" + }, + { + "name": "JUDO 1056", + "title": "Legal Research and Writing III: Judicial Opinions; Critical Drafting and Analysis" + }, + { + "name": "JUDO 1057", + "title": "Toxic Chemical Regulation" + }, + { + "name": "JUDO 1058", + "title": "Lawyering for Entrepreneurship" + }, + { + "name": "JUDO 1059", + "title": "Current Issues in Cyberlaw" + }, + { + "name": "JUDO 1060", + "title": "Internet of Things" + }, + { + "name": "JUDO 1061", + "title": "Payment Systems" + }, + { + "name": "JUDO 1062", + "title": "How to Run for Office" + }, + { + "name": "JUDO 1063", + "title": "Special Education Law-US" + }, + { + "name": "JUDO 1064", + "title": "International Trade Law" + }, + { + "name": "JUDO 1069", + "title": "ICC Moot Court" + }, + { + "name": "JUDO 1079", + "title": "IP Moot Court" + }, + { + "name": "JUDO 1081", + "title": "Innovation Law and Policy" + }, + { + "name": "JUDO 1091", + "title": "Private Equity and Hedge Funds" + }, + { + "name": "JUDO 1094", + "title": "Race and Gender Equality in Commercial Law, Markets and Business Organizations" + }, + { + "name": "JUDO 1500", + "title": "National Business Negotiating Competition" + }, + { + "name": "JUDO 5020", + "title": "Commercial Arbitration Law and Procedure" + }, + { + "name": "JUDO 5021", + "title": "Race and the Law" + }, + { + "name": "JUDO 5022", + "title": "Ethical Dilemmas and Standards for Public Servants" + }, + { + "name": "JUDO 5023", + "title": "Sentencing" + }, + { + "name": "JUDO 5024", + "title": "International Commercial Arbitration" + }, + { + "name": "JUDO 5025", + "title": "Legislation and Regulation" + }, + { + "name": "JUDO 5026", + "title": "Nonprofit Organizations" + }, + { + "name": "JUDO 5027", + "title": "Legal and Clinical Approaches to Healthcare" + }, + { + "name": "JUDO 5028", + "title": "Law and Aging" + }, + { + "name": "JUDO 5029", + "title": "Drug and Medical Device Law" + }, + { + "name": "JUDO 5030", + "title": "Negotiating and Documenting Corporate Transactions" + }, + { + "name": "JUDO 5031", + "title": "Commercial Transactions" + }, + { + "name": "JUDO 5032", + "title": "Advanced Trial Advocacy: Technology in Trial and Litigation" + }, + { + "name": "JUDO 5033", + "title": "Sports and Entertainment Law" + }, + { + "name": "JUDO 5034", + "title": "Social Justice Lawyering Seminar" + }, + { + "name": "JUDO 5035", + "title": "Civil Pre Trial Practice" + }, + { + "name": "JUDO 5036", + "title": "Temple Legal Aid Office: Family Law Litigation Seminar" + }, + { + "name": "JUDO 5037", + "title": "Federal Appellate Litigation Seminar" + }, + { + "name": "JUDO 5038", + "title": "Comparative Corporate Governance" + }, + { + "name": "JUDO 5040", + "title": "Survey of Legal Topics" + }, + { + "name": "JUDO 5041", + "title": "Poverty Law" + }, + { + "name": "JUDO 5042", + "title": "Introduction to Compliance" + }, + { + "name": "JUDO 5043", + "title": "Health Care Fraud: Investigation, Prosecution, and Compliance" + }, + { + "name": "JUDO 5044", + "title": "Advanced Legal Research" + }, + { + "name": "JUDO 5045", + "title": "Pennsylvania Legal Research" + }, + { + "name": "JUDO 5046", + "title": "Disability Law and Policy" + }, + { + "name": "JUDO 5047", + "title": "Internet Law" + }, + { + "name": "JUDO 5048", + "title": "Ethical Perspectives on Law" + }, + { + "name": "JUDO 5049", + "title": "Advanced Topics in Contract Law" + }, + { + "name": "JUDO 5051", + "title": "Environmental Compliance and Enforcement" + }, + { + "name": "JUDO 5052", + "title": "Justice Lab Seminar" + }, + { + "name": "JUDO 5053", + "title": "International Compliance" + }, + { + "name": "JUDO 5054", + "title": "Mindful Lawyering: Techniques for Effective Counseling, Negotiation and Advocacy" + }, + { + "name": "JUDO 5055", + "title": "Comparative Criminal Procedure" + }, + { + "name": "JUDO 5056", + "title": "Current Issues in Cyberlaw" + }, + { + "name": "JUDO 5057", + "title": "Internet of Things" + }, + { + "name": "JUDO 5058", + "title": "Empirical Legal Research Methods: Health Policy" + }, + { + "name": "JUDO 5059", + "title": "Drug Law Policy and Practice: Marijuana Regulation" + }, + { + "name": "JUDO 5060", + "title": "International Trade Law" + }, + { + "name": "JUDO 5061", + "title": "Introduction to Healthcare Compliance" + }, + { + "name": "JUDO 5062", + "title": "Environmental Issues in Business Law" + }, + { + "name": "JUDO 5063", + "title": "New Technology Regulation" + }, + { + "name": "JUDO 5065", + "title": "Police and School District Litigation Defense Clinic" + }, + { + "name": "JUDO A453", + "title": "Intro European Union Law" + }, + { + "name": "JUDO A467", + "title": "Intl Intellctl Property" + }, + { + "name": "JUDO A499", + "title": "Comparative Constnl Law" + }, + { + "name": "JUDO A500", + "title": "Comparative Public Law" + }, + { + "name": "JUDO A501", + "title": "Comparative Private Law" + }, + { + "name": "JUDO A502", + "title": "Comparative Criminal Law" + }, + { + "name": "JUDO A503", + "title": "Int'l & Comprtv Envirnmtl" + }, + { + "name": "JUDO A504", + "title": "Intro European Cmnty Law" + }, + { + "name": "JUDO A505", + "title": "Intl & Euro Criminal Law" + }, + { + "name": "JUDO A506", + "title": "Admiralty: Intl Maritime" + }, + { + "name": "JUDO A512", + "title": "Comp Maritime Law" + }, + { + "name": "JUDO A550", + "title": "Compartv Immigration Law" + }, + { + "name": "JUDO A583", + "title": "Intl Protctn Human Rghts" + }, + { + "name": "JUDO A637", + "title": "Intl Commercial Transctn" + }, + { + "name": "JUDO A651", + "title": "Intl Dispute Resolution" + }, + { + "name": "JUDO A900", + "title": "Guided Research" + }, + { + "name": "JUDO A902", + "title": "Guided Research Serial" + }, + { + "name": "JUDO C414", + "title": "Legal Research & Writing" + }, + { + "name": "JUDO C503", + "title": "Comparative Crim Justice" + }, + { + "name": "JUDO C504", + "title": "Irish Law & Legal Justice" + }, + { + "name": "JUDO C505", + "title": "Law/Euro Econ Community" + }, + { + "name": "JUDO C600", + "title": "Taxation" + }, + { + "name": "JUDO D460", + "title": "ITAP Section" + }, + { + "name": "JUDO D462", + "title": "Integrated Transactional Program" + }, + { + "name": "JUDO I416", + "title": "Professnl Responsibility" + }, + { + "name": "JUDO I460", + "title": "Trial Advocacy I" + }, + { + "name": "JUDO I461", + "title": "Trial Advocacy II" + }, + { + "name": "JUDO I462", + "title": "Transactional Practice I" + }, + { + "name": "JUDO I463", + "title": "Transactional Practce II" + }, + { + "name": "JUDO I517", + "title": "Civil Procedure II" + }, + { + "name": "JUDO I540", + "title": "Evidence" + }, + { + "name": "JUDO I602", + "title": "Trusts & Estates" + }, + { + "name": "JUDO J100", + "title": "Legal English/Communctn" + }, + { + "name": "JUDO J101", + "title": "Intro/Asian Legal System" + }, + { + "name": "JUDO J102", + "title": "Intro to Japanese Law" + }, + { + "name": "JUDO J103", + "title": "Intrnl Criminal Law" + }, + { + "name": "JUDO J104", + "title": "East/West Negotiation" + }, + { + "name": "JUDO J105", + "title": "Current Issues in Japanese Law" + }, + { + "name": "JUDO J106", + "title": "Regulatn Business Japan" + }, + { + "name": "JUDO J107", + "title": "Compartv Criminal Procdr" + }, + { + "name": "JUDO J108", + "title": "Taxation US-Japan Trans" + }, + { + "name": "JUDO J109", + "title": "International Antitrust" + }, + { + "name": "JUDO J110", + "title": "Law & Govrnance Internet" + }, + { + "name": "JUDO J111", + "title": "Intl Enforcmnt IP Rights" + }, + { + "name": "JUDO J112", + "title": "International Finance" + }, + { + "name": "JUDO J113", + "title": "Comprtv Corporate Law" + }, + { + "name": "JUDO J114", + "title": "Comparative Bankruptcy" + }, + { + "name": "JUDO J115", + "title": "Compartv Competition Law" + }, + { + "name": "JUDO J116", + "title": "Chinese Bus/Investmt Law" + }, + { + "name": "JUDO J117", + "title": "Intro Chinese Law" + }, + { + "name": "JUDO J118", + "title": "International Entertainment Law" + }, + { + "name": "JUDO J402", + "title": "Civil Procedure I" + }, + { + "name": "JUDO J403", + "title": "Administrative Law" + }, + { + "name": "JUDO J404", + "title": "US Constitutional Law" + }, + { + "name": "JUDO J406", + "title": "Contracts" + }, + { + "name": "JUDO J410", + "title": "Criminal Law" + }, + { + "name": "JUDO J414", + "title": "Legal Research & Writing" + }, + { + "name": "JUDO J416", + "title": "Professional Responsibility" + }, + { + "name": "JUDO J418", + "title": "Property" + }, + { + "name": "JUDO J420", + "title": "Torts" + }, + { + "name": "JUDO J422", + "title": "Legal Decision Making" + }, + { + "name": "JUDO J423", + "title": "Intl/Comprtv Family Law" + }, + { + "name": "JUDO J424", + "title": "International Civil Litigation" + }, + { + "name": "JUDO J425", + "title": "Introduction to the American Legal System" + }, + { + "name": "JUDO J427", + "title": "Intro Intl Business Law" + }, + { + "name": "JUDO J435", + "title": "Human Rights/Euro Union" + }, + { + "name": "JUDO J440", + "title": "Unincorporated Assoctns" + }, + { + "name": "JUDO J444", + "title": "National Security Law" + }, + { + "name": "JUDO J446", + "title": "Intl IP Licensing" + }, + { + "name": "JUDO J447", + "title": "Intelctl Proprty Licnsng" + }, + { + "name": "JUDO J453", + "title": "Intro European Union Law" + }, + { + "name": "JUDO J464", + "title": "International Contract Drafting" + }, + { + "name": "JUDO J466", + "title": "International Environmental Law" + }, + { + "name": "JUDO J467", + "title": "International Intellectual Property" + }, + { + "name": "JUDO J472", + "title": "Intl Commercl Arbitratn" + }, + { + "name": "JUDO J473", + "title": "Law of Cyberspace" + }, + { + "name": "JUDO J490", + "title": "Law/Electronic Commerce" + }, + { + "name": "JUDO J494", + "title": "Advising the Multinational Company on Global Legal Issues" + }, + { + "name": "JUDO J500", + "title": "Admiralty" + }, + { + "name": "JUDO J501", + "title": "International Dispute Resolution" + }, + { + "name": "JUDO J502", + "title": "International Trade Contracts" + }, + { + "name": "JUDO J504", + "title": "Antitrust" + }, + { + "name": "JUDO J506", + "title": "Banking and Financial Regulation" + }, + { + "name": "JUDO J508", + "title": "Corporations " + }, + { + "name": "JUDO J509", + "title": "Comparative Constnl Law" + }, + { + "name": "JUDO J515", + "title": "Telecommunication Law" + }, + { + "name": "JUDO J517", + "title": "Civil Procedure II" + }, + { + "name": "JUDO J521", + "title": "Comprtv Dispute Settlmnt" + }, + { + "name": "JUDO J522", + "title": "Conflict of Laws" + }, + { + "name": "JUDO J528", + "title": "Corporate Reorganization" + }, + { + "name": "JUDO J530", + "title": "Bankruptcy" + }, + { + "name": "JUDO J532", + "title": "Criminal Procedure I" + }, + { + "name": "JUDO J535", + "title": "Entertainment Law" + }, + { + "name": "JUDO J537", + "title": "Employment Discriminatn" + }, + { + "name": "JUDO J540", + "title": "Evidence" + }, + { + "name": "JUDO J550", + "title": "Comparative Immigration Law" + }, + { + "name": "JUDO J551", + "title": "Comprtv Trademarks" + }, + { + "name": "JUDO J552", + "title": "Comparative Patent Law" + }, + { + "name": "JUDO J553", + "title": "Copyright Law" + }, + { + "name": "JUDO J554", + "title": "International Investment" + }, + { + "name": "JUDO J555", + "title": "International Trade Law" + }, + { + "name": "JUDO J556", + "title": "International Law" + }, + { + "name": "JUDO J568", + "title": "Family Law" + }, + { + "name": "JUDO J571", + "title": "International Taxation" + }, + { + "name": "JUDO J582", + "title": "Comprtv Products Liablty" + }, + { + "name": "JUDO J583", + "title": "International Protection of Human Rights" + }, + { + "name": "JUDO J588", + "title": "Remedies" + }, + { + "name": "JUDO J589", + "title": "Secured Transactions" + }, + { + "name": "JUDO J590", + "title": "US Securities Regulation" + }, + { + "name": "JUDO J591", + "title": "Intl Securities Regulatn" + }, + { + "name": "JUDO J599", + "title": "Survey of Legal Topics" + }, + { + "name": "JUDO J600", + "title": "Taxation" + }, + { + "name": "JUDO J602", + "title": "Trusts and Estates" + }, + { + "name": "JUDO J625", + "title": "Comparative Employment Law" + }, + { + "name": "JUDO J635", + "title": "Computer Law" + }, + { + "name": "JUDO J637", + "title": "International Commercial Transactions " + }, + { + "name": "JUDO J642", + "title": "International Organizations" + }, + { + "name": "JUDO J650", + "title": "Corporate Transactions" + }, + { + "name": "JUDO J651", + "title": "Business Planning for International Transactions" + }, + { + "name": "JUDO J652", + "title": "International Development and Policy Law" + }, + { + "name": "JUDO J653", + "title": "Comparative Corporate Governance" + }, + { + "name": "JUDO J654", + "title": "Iintroduction to Compliance" + }, + { + "name": "JUDO J655", + "title": "Political and Civil Rights" + }, + { + "name": "JUDO J656", + "title": "International Compliance" + }, + { + "name": "JUDO J813", + "title": "Comparative Corporate Law" + }, + { + "name": "JUDO J825", + "title": "Comparatv Employment Law" + }, + { + "name": "JUDO J835", + "title": "Innovation Law and Policy" + }, + { + "name": "JUDO J840", + "title": "Private Equity and Hedge Funds" + }, + { + "name": "JUDO J898", + "title": "Comparative Law" + }, + { + "name": "JUDO J900", + "title": "Guided Research" + }, + { + "name": "JUDO J902", + "title": "Guided Research Serial" + }, + { + "name": "JUDO J903", + "title": "Introduction to Japanese Law" + }, + { + "name": "JUDO J904", + "title": "Guided Research II" + }, + { + "name": "JUDO J905", + "title": "Guided Research II Serial" + }, + { + "name": "JUDO J907", + "title": "Comparative Criminal Procedure" + }, + { + "name": "JUDO J908", + "title": "Comparative Criminal Justice" + }, + { + "name": "JUDO J915", + "title": "Human Rights/Euro Union" + }, + { + "name": "JUDO J921", + "title": "Law/Electronic Commerce" + }, + { + "name": "JUDO J922", + "title": "Regulating Cyberthreats" + }, + { + "name": "JUDO J923", + "title": "Intl/Comprtv Family Law" + }, + { + "name": "JUDO J924", + "title": "International Contract Drafting" + }, + { + "name": "JUDO J925", + "title": "Refugee Law" + }, + { + "name": "JUDO J926", + "title": "Comparative Corporate Governance" + }, + { + "name": "JUDO J927", + "title": "International Protection of Human Rights" + }, + { + "name": "JUDO J928", + "title": "Unincorporated Business Entities" + }, + { + "name": "JUDO J959", + "title": "The Global Workplace" + }, + { + "name": "JUDO J984", + "title": "National Security Law" + }, + { + "name": "JUDO J991", + "title": "International Development and Policy Law" + }, + { + "name": "JUDO P300", + "title": "Practicum Associated with a Course" + }, + { + "name": "JUDO P400", + "title": "Practicum: Administrative Law" + }, + { + "name": "JUDO P410", + "title": "Practicum: Alternative Dispute Resolution" + }, + { + "name": "JUDO P415", + "title": "Practicum: Bankruptcy" + }, + { + "name": "JUDO P420", + "title": "Practicum: Civil Rights" + }, + { + "name": "JUDO P430", + "title": "Practicum: Commercial Law" + }, + { + "name": "JUDO P440", + "title": "Practicum: Constitutional Law" + }, + { + "name": "JUDO P450", + "title": "Practicum: Consumer Law" + }, + { + "name": "JUDO P460", + "title": "Practicum: Corporate Law" + }, + { + "name": "JUDO P470", + "title": "Practicum: Criminal Law" + }, + { + "name": "JUDO P480", + "title": "Practicum: Death Penalty" + }, + { + "name": "JUDO P490", + "title": "Practicum: Employment Discrimination" + }, + { + "name": "JUDO P500", + "title": "Practicum: Environmental Law" + }, + { + "name": "JUDO P510", + "title": "Practicum: Family Law" + }, + { + "name": "JUDO P520", + "title": "Practicum: General" + }, + { + "name": "JUDO P530", + "title": "Practicum: Health Law" + }, + { + "name": "JUDO P540", + "title": "Practicum: Immigration Law" + }, + { + "name": "JUDO P550", + "title": "Practicum: Intellectual Property Law" + }, + { + "name": "JUDO P560", + "title": "Practicum: International Law" + }, + { + "name": "JUDO P565", + "title": "Practicum: Judicial Placement" + }, + { + "name": "JUDO P570", + "title": "Practicum: Law and Public Policy" + }, + { + "name": "JUDO P580", + "title": "Practicum: Non-Profit Organizations" + }, + { + "name": "JUDO P590", + "title": "Practicum: Property Law" + }, + { + "name": "JUDO P600", + "title": "Practicum: Public Interest Law" + }, + { + "name": "JUDO P610", + "title": "Practicum: Securities Law" + }, + { + "name": "JUDO P620", + "title": "Practicum: Sports Law" + }, + { + "name": "JUDO P630", + "title": "Practicum: Tort Law" + }, + { + "name": "JUDO R100", + "title": "Legal English/Communctn" + }, + { + "name": "JUDO R119", + "title": "IP-Law Of The Internet" + }, + { + "name": "JUDO R120", + "title": "Intrnl Fiscal Policy" + }, + { + "name": "JUDO R422", + "title": "Legal Decision Making" + }, + { + "name": "JUDO R424", + "title": "Intrnl Civil Litigation" + }, + { + "name": "JUDO R425", + "title": "Intl Litigatn/Arbitratn" + }, + { + "name": "JUDO R426", + "title": "Intrnl Business Policy" + }, + { + "name": "JUDO R427", + "title": "Introduction to International Business Law" + }, + { + "name": "JUDO R428", + "title": "Intl Literary Perspectvs" + }, + { + "name": "JUDO R429", + "title": "Compartv Legal Systems" + }, + { + "name": "JUDO R430", + "title": "Intl Human Rts/US Litgn" + }, + { + "name": "JUDO R432", + "title": "Intrnl Criminal Law" + }, + { + "name": "JUDO R464", + "title": "Intrnl Contract Drafting" + }, + { + "name": "JUDO R466", + "title": "Intrnl Environmental Law" + }, + { + "name": "JUDO R467", + "title": "Foundations of International Criminal Law" + }, + { + "name": "JUDO R468", + "title": "Rome, the Roman Republic, and the American Constitution" + }, + { + "name": "JUDO R469", + "title": "International Intellectual Property" + }, + { + "name": "JUDO R494", + "title": "Advising the Multinational Company on Global Legal Issues" + }, + { + "name": "JUDO R499", + "title": "Comparative Constnl Law" + }, + { + "name": "JUDO R500", + "title": "Intrnl Trade Contracts" + }, + { + "name": "JUDO R501", + "title": "Intl Dispute Resolution" + }, + { + "name": "JUDO R502", + "title": "Immigration Law" + }, + { + "name": "JUDO R503", + "title": "Criminal Appellate Pro" + }, + { + "name": "JUDO R506", + "title": "Intn'l Eff/Cntrl Enviorn" + }, + { + "name": "JUDO R507", + "title": "Intn'l Commercial Law" + }, + { + "name": "JUDO R508", + "title": "Comparative Crim Justice" + }, + { + "name": "JUDO R509", + "title": "Comp Products Liability" + }, + { + "name": "JUDO R513", + "title": "Common Law & Civil Law" + }, + { + "name": "JUDO R514", + "title": "Comparative Family Law" + }, + { + "name": "JUDO R515", + "title": "Comparative Prod Liabil" + }, + { + "name": "JUDO R516", + "title": "Disp Res Int'l Trans" + }, + { + "name": "JUDO R517", + "title": "Intro to EEC Law" + }, + { + "name": "JUDO R518", + "title": "Comp.Exam.Of Legal Rghts" + }, + { + "name": "JUDO R521", + "title": "Introduction to European Union Law" + }, + { + "name": "JUDO R522", + "title": "Comp Contracts Principle" + }, + { + "name": "JUDO R523", + "title": "Admiralty" + }, + { + "name": "JUDO R525", + "title": "Comparative Social Justice" + }, + { + "name": "JUDO R554", + "title": "Intl Business Transactns" + }, + { + "name": "JUDO R613", + "title": "Comparative Bioethics" + }, + { + "name": "JUDO R625", + "title": "Comparative Employment Law" + }, + { + "name": "JUDO R658", + "title": "Globalization/Constn" + }, + { + "name": "JUDO R690", + "title": "Perspectives on Law Abroad: Rome" + }, + { + "name": "JUDO R835", + "title": "Innovation Law and Policy" + }, + { + "name": "JUDO R840", + "title": "Private Equity and Hedge Funds" + }, + { + "name": "JUDO R900", + "title": "Guided Research" + }, + { + "name": "JUDO R901", + "title": "Guided Research II" + }, + { + "name": "JUDO R902", + "title": "Guided Research Serial" + }, + { + "name": "JUDO R903", + "title": "Guided Research II Serial" + }, + { + "name": "JUDO T400", + "title": "Moral Courage/Lawyers" + }, + { + "name": "JUDO T433", + "title": "Cyberspace" + }, + { + "name": "JUDO T500", + "title": "Intro Int'l Business Law" + }, + { + "name": "JUDO T501", + "title": "Comparatv Religious Law" + }, + { + "name": "JUDO T502", + "title": "White Collar Crime" + }, + { + "name": "JUDO T509", + "title": "Comparative Constnl Law" + }, + { + "name": "JUDO T510", + "title": "Middle East Peace Procss" + }, + { + "name": "JUDO T511", + "title": "Comparative Family Law" + }, + { + "name": "JUDO T515", + "title": "Comp Crim Law and Pro" + }, + { + "name": "JUDO T637", + "title": "Intl Commercial Transctn" + }, + { + "name": "JUDO T900", + "title": "Guided Research" + }, + { + "name": "JUDO T902", + "title": "Guided Research Serial" + }, + { + "name": "JUDO U010", + "title": "MBA Course Transfer Credit" + }, + { + "name": "JUDO U020", + "title": "MPH Course Transfer Credit" + }, + { + "name": "JUDO U030", + "title": "University Transfer Credit" + }, + { + "name": "JUDO W510", + "title": "Institutional Decision Making" + }, + { + "name": "JUDO W910", + "title": "Law and Public Policy" + }, + { + "name": "JUDO W920", + "title": "Law and Public Policy Colloquium" + }, + { + "name": "JUDO X419", + "title": "TU/Rutgers Exchange" + }, + { + "name": "JUDO X537", + "title": "Employmnt Discrm-Writing" + }, + { + "name": "KINS 1001", + "title": "Cardiovascular Fitness for a Healthy Lifestyle" + }, + { + "name": "KINS 1002", + "title": "ZUMBA from Around the World" + }, + { + "name": "KINS 1003", + "title": "Adventure Climbing I" + }, + { + "name": "KINS 1005", + "title": "Aikido I" + }, + { + "name": "KINS 1006", + "title": "Aikido II" + }, + { + "name": "KINS 1007", + "title": "Aqua Aerobics I" + }, + { + "name": "KINS 1009", + "title": "Backpacking and Camping I" + }, + { + "name": "KINS 1012", + "title": "Badminton I" + }, + { + "name": "KINS 1016", + "title": "Fencing I" + }, + { + "name": "KINS 1018", + "title": "Fitness for Life" + }, + { + "name": "KINS 1019", + "title": "Golf I" + }, + { + "name": "KINS 1021", + "title": "Golf II" + }, + { + "name": "KINS 1022", + "title": "Gymnastics I" + }, + { + "name": "KINS 1024", + "title": "Judo I" + }, + { + "name": "KINS 1026", + "title": "Karate I" + }, + { + "name": "KINS 1027", + "title": "Karate II" + }, + { + "name": "KINS 1028", + "title": "Lifeguard Training" + }, + { + "name": "KINS 1029", + "title": "Martial Arts I: Capoeira Angola (Brazilian Martial Arts)" + }, + { + "name": "KINS 1031", + "title": "Aquatics Workshop I" + }, + { + "name": "KINS 1032", + "title": "Fitness Workshop I" + }, + { + "name": "KINS 1033", + "title": "Lifestyle Workshop I" + }, + { + "name": "KINS 1034", + "title": "Survival Workshop I" + }, + { + "name": "KINS 1036", + "title": "Personal Defense for Women" + }, + { + "name": "KINS 1039", + "title": "Racquetball I" + }, + { + "name": "KINS 1041", + "title": "Aquatics Workshop II" + }, + { + "name": "KINS 1042", + "title": "Fitness Workshop II" + }, + { + "name": "KINS 1043", + "title": "Lifestyle Workshop II" + }, + { + "name": "KINS 1044", + "title": "Survival Workshop II" + }, + { + "name": "KINS 1045", + "title": "Pilates I" + }, + { + "name": "KINS 1046", + "title": "SCUBA Diving I" + }, + { + "name": "KINS 1047", + "title": "SCUBA Diving II" + }, + { + "name": "KINS 1048", + "title": "Swimming for the Non-Swimmer" + }, + { + "name": "KINS 1049", + "title": "Swimming I" + }, + { + "name": "KINS 1051", + "title": "Swimming II" + }, + { + "name": "KINS 1052", + "title": "Tae Kwon Do I" + }, + { + "name": "KINS 1053", + "title": "Tae Kwon Do II" + }, + { + "name": "KINS 1054", + "title": "Tennis I" + }, + { + "name": "KINS 1055", + "title": "Tennis II" + }, + { + "name": "KINS 1056", + "title": "Volleyball I" + }, + { + "name": "KINS 1057", + "title": "Volleyball II" + }, + { + "name": "KINS 1058", + "title": "Walking/Jogging/Running I" + }, + { + "name": "KINS 1059", + "title": "Yin Yoga: The Other Half of Yoga" + }, + { + "name": "KINS 1061", + "title": "Water Safety Instructor" + }, + { + "name": "KINS 1062", + "title": "Weight Training I" + }, + { + "name": "KINS 1063", + "title": "Weight Training II" + }, + { + "name": "KINS 1064", + "title": "Yoga I" + }, + { + "name": "KINS 1201", + "title": "Introduction to Kinesiology in Public Health" + }, + { + "name": "KINS 1202", + "title": "Concepts in Health-Related Fitness" + }, + { + "name": "KINS 1221", + "title": "Principles of Anatomy and Physiology I" + }, + { + "name": "KINS 1222", + "title": "Principles of Anatomy and Physiology II" + }, + { + "name": "KINS 1223", + "title": "Human Anatomy and Physiology I" + }, + { + "name": "KINS 1224", + "title": "Human Anatomy and Physiology II" + }, + { + "name": "KINS 1225", + "title": "General Human Anatomy & Physiology" + }, + { + "name": "KINS 1442", + "title": "Basic Techniques in Athletic Training" + }, + { + "name": "KINS 1444", + "title": "Movement Injuries: Prevention and Care" + }, + { + "name": "KINS 1923", + "title": "Honors Anatomy and Physiology I" + }, + { + "name": "KINS 2203", + "title": "Physiology of Physical Activity" + }, + { + "name": "KINS 2204", + "title": "Motor Behavior" + }, + { + "name": "KINS 2205", + "title": "Exercise Assessment and Programming" + }, + { + "name": "KINS 2362", + "title": "Introduction to Exercise and Sport Science" + }, + { + "name": "KINS 2364", + "title": "Applied Technologies in Kinesiology" + }, + { + "name": "KINS 2389", + "title": "Field Work in Exercise and Sport Science I" + }, + { + "name": "KINS 2421", + "title": "Emergency Medical Care for Health Professionals" + }, + { + "name": "KINS 2424", + "title": "Functional Anatomy for Kinesiology" + }, + { + "name": "KINS 2441", + "title": "Lower Extremity: Assessment and Treatment of Injuries" + }, + { + "name": "KINS 2442", + "title": "Upper Extremity: Assessment and Treatment of Injuries" + }, + { + "name": "KINS 2501", + "title": "Physical Activity Across the Lifespan" + }, + { + "name": "KINS 2502", + "title": "Physical Activity for Individuals with Disabilities" + }, + { + "name": "KINS 3096", + "title": "Cultural Competency in Health and Healthcare" + }, + { + "name": "KINS 3202", + "title": "Biomechanics of Physical Activity" + }, + { + "name": "KINS 3213", + "title": "Human Movement and Development" + }, + { + "name": "KINS 3252", + "title": "Exercise Psychology and Adherence" + }, + { + "name": "KINS 3296", + "title": "The Social-Psychology of Physical Activity" + }, + { + "name": "KINS 3362", + "title": "Olympic and Powerlifting" + }, + { + "name": "KINS 3363", + "title": "Basic Electrocardiography" + }, + { + "name": "KINS 3364", + "title": "The Science of Health-Related Fitness" + }, + { + "name": "KINS 3368", + "title": "Principles of Health Fitness Program Management" + }, + { + "name": "KINS 3389", + "title": "Field Work in Exercise and Sport Science II" + }, + { + "name": "KINS 3441", + "title": "Therapeutic Modalities in Athletic Training" + }, + { + "name": "KINS 3442", + "title": "Therapeutic Exercises in Athletic Training" + }, + { + "name": "KINS 3443", + "title": "Head, Neck, and Spine: Assessment and Treatment of Injuries" + }, + { + "name": "KINS 3444", + "title": "General Medical Conditions in Athletic Training" + }, + { + "name": "KINS 3487", + "title": "Practicum in Athletic Training I" + }, + { + "name": "KINS 3501", + "title": "Research Methods in Kinesiology" + }, + { + "name": "KINS 3687", + "title": "Practicum in Athletic Training II" + }, + { + "name": "KINS 3787", + "title": "Physical Activity, Motor Behavior, and Autism Spectrum Disorder" + }, + { + "name": "KINS 4096", + "title": "Introduction to the Narrative in Patient-Centered Health Care" + }, + { + "name": "KINS 4196", + "title": "Sociology of Physical Activity" + }, + { + "name": "KINS 4202", + "title": "Advanced Biomechanics and Movement Analysis" + }, + { + "name": "KINS 4227", + "title": "The Acquisition of Motor Skills" + }, + { + "name": "KINS 4228", + "title": "Perceptual Motor Development" + }, + { + "name": "KINS 4238", + "title": "Sports in American Society" + }, + { + "name": "KINS 4239", + "title": "Self-Development Through Physical Activity" + }, + { + "name": "KINS 4242", + "title": "Exercise, Nutrition and Behavior" + }, + { + "name": "KINS 4282", + "title": "Independent Study in Kinesiology" + }, + { + "name": "KINS 4283", + "title": "Directed Readings and Study in Kinesiology" + }, + { + "name": "KINS 4290", + "title": "Special Topics in Kinesiology" + }, + { + "name": "KINS 4296", + "title": "History and Philosophy of Kinesiology" + }, + { + "name": "KINS 4311", + "title": "Advanced Physiology of Exercise" + }, + { + "name": "KINS 4312", + "title": "Exercise and Nutrient Metabolism" + }, + { + "name": "KINS 4313", + "title": "Exercise and Aging" + }, + { + "name": "KINS 4314", + "title": "Principles of Personal Fitness" + }, + { + "name": "KINS 4315", + "title": "Applied Performance Nutrition" + }, + { + "name": "KINS 4316", + "title": "Principles of Strength and Conditioning" + }, + { + "name": "KINS 4333", + "title": "Clinical Cardiovascular Pulmonary Exercise Physiology" + }, + { + "name": "KINS 4334", + "title": "Principles and Practices of Graded Exercise Testing and Exercise Program Development" + }, + { + "name": "KINS 4335", + "title": "Clinical Exercise Physiology" + }, + { + "name": "KINS 4385", + "title": "Internship in Exercise and Sport Science" + }, + { + "name": "KINS 4396", + "title": "Research and Writing in Exercise and Sport Science" + }, + { + "name": "KINS 4443", + "title": "Organization and Administration in Athletic Training" + }, + { + "name": "KINS 4450", + "title": "Special Topics in Athletic Training" + }, + { + "name": "KINS 4487", + "title": "Practicum in Athletic Training III" + }, + { + "name": "KINS 4596", + "title": "Psychology of Physical Activity" + }, + { + "name": "KINS 4687", + "title": "Practicum in Athletic Training IV" + }, + { + "name": "KINS 4808", + "title": "Sport Concussion" + }, + { + "name": "KINS 5141", + "title": "Anatomy for Orthopedic Assessment" + }, + { + "name": "KINS 5142", + "title": "Foundations of Athletic Training" + }, + { + "name": "KINS 5143", + "title": "Orthopedic Assessment I" + }, + { + "name": "KINS 5202", + "title": "Biomechanical Skeletal Tissue" + }, + { + "name": "KINS 5237", + "title": "Racial Minorities and Sport" + }, + { + "name": "KINS 5239", + "title": "Self-Development and Sport" + }, + { + "name": "KINS 5244", + "title": "Orthopedic Assessment II" + }, + { + "name": "KINS 5245", + "title": "General Medical Conditions in Athletic Training" + }, + { + "name": "KINS 5246", + "title": "General Medical Conditions in Athletic Training Laboratory" + }, + { + "name": "KINS 5247", + "title": "Leadership for the Entry-Level Athletic Trainer" + }, + { + "name": "KINS 5287", + "title": "Practicum in Athletic Training I" + }, + { + "name": "KINS 5311", + "title": "Physiology of Exercise" + }, + { + "name": "KINS 5312", + "title": "Exercise and Nutrient Metabolism" + }, + { + "name": "KINS 5313", + "title": "Exercise and Aging" + }, + { + "name": "KINS 5441", + "title": "Therapeutic Modalities in Athletic Training" + }, + { + "name": "KINS 5442", + "title": "Therapeutic Exercise in Athletic Training" + }, + { + "name": "KINS 5443", + "title": "Organization and Administration in Athletic Training" + }, + { + "name": "KINS 5487", + "title": "Practicum in Athletic Training II" + }, + { + "name": "KINS 5644", + "title": "Applied Research in Athletic Training" + }, + { + "name": "KINS 5645", + "title": "Board of Certification Examination Preparation" + }, + { + "name": "KINS 5687", + "title": "Practicum in Athletic Training III" + }, + { + "name": "KINS 5808", + "title": "Advanced Sport Concussion" + }, + { + "name": "KINS 5851", + "title": "Current Trends in Athletic Training" + }, + { + "name": "KINS 5852", + "title": "Transition to Athletic Training Clinical Practice" + }, + { + "name": "KINS 5987", + "title": "Practicum in Athletic Training IV" + }, + { + "name": "KINS 8101", + "title": "Creative Approaches to Teaching Physical Education" + }, + { + "name": "KINS 8300", + "title": "Seminar in Athletic Training/Sport Medicine" + }, + { + "name": "KINS 8343", + "title": "Orthopedics in Athletic Training/Sports Medicine" + }, + { + "name": "KINS 8344", + "title": "Rehabilitation Methods and Techniques for Sports-Related Injuries" + }, + { + "name": "KINS 8348", + "title": "Lab Tech in Ath Train" + }, + { + "name": "KINS 8349", + "title": "Cadaver Anatomy" + }, + { + "name": "KINS 8500", + "title": "Symposium in Kinesiology" + }, + { + "name": "KINS 8601", + "title": "Research Appraisal and Clinical Application" + }, + { + "name": "KINS 8602", + "title": "Clinical Grand Rounds I: Lower Extremity" + }, + { + "name": "KINS 8603", + "title": "Clinical Grand Rounds II: Upper Extremity" + }, + { + "name": "KINS 8604", + "title": "Evidence Based Decision Making in Athletic Training" + }, + { + "name": "KINS 8611", + "title": "Leadership and Cultural Considerations in Athletic Training" + }, + { + "name": "KINS 9102", + "title": "Measurement and Evaluation in Physical Education" + }, + { + "name": "KINS 9103", + "title": "Analytic Study of Teaching" + }, + { + "name": "KINS 9104", + "title": "Curriculum in Physical Education" + }, + { + "name": "KINS 9201", + "title": "Cardiovascular Exercise Physiology" + }, + { + "name": "KINS 9203", + "title": "Appl Ex Physio-Neuromusc" + }, + { + "name": "KINS 9204", + "title": "Cellular Adapt to Exer" + }, + { + "name": "KINS 9205", + "title": "Exercise Testing and Prescription" + }, + { + "name": "KINS 9206", + "title": "Introduction to Environmental Physiology" + }, + { + "name": "KINS 9287", + "title": "Athletic Training/Sports Medicine Practicum I" + }, + { + "name": "KINS 9288", + "title": "Athletic Training/Sports Medicine Practicum II " + }, + { + "name": "KINS 9301", + "title": "Motor Development" + }, + { + "name": "KINS 9302", + "title": "Motor Learning" + }, + { + "name": "KINS 9311", + "title": "Biomechanics: Human Movement" + }, + { + "name": "KINS 9401", + "title": "Psychological Bases of Motor Behavior" + }, + { + "name": "KINS 9402", + "title": "Psychology of Human Motivation and Development" + }, + { + "name": "KINS 9403", + "title": "Sociology of Kinesiology" + }, + { + "name": "KINS 9404", + "title": "Exercise and Mental Health" + }, + { + "name": "KINS 9405", + "title": "Psychosocial Interactions and Skilled Performance" + }, + { + "name": "KINS 9406", + "title": "Psychosocial Testing in Exercise and Sport Psychology" + }, + { + "name": "KINS 9407", + "title": "Obesity and Eating Disorders" + }, + { + "name": "KINS 9601", + "title": "Capstone in Athletic Training" + }, + { + "name": "KINS 9683", + "title": "Mentored Research I" + }, + { + "name": "KINS 9783", + "title": "Mentored Research II" + }, + { + "name": "KINS 9785", + "title": "Internship in Kinesiology" + }, + { + "name": "KINS 9882", + "title": "Independent Research" + }, + { + "name": "KINS 9901", + "title": "Research Methods in Kinesiology" + }, + { + "name": "KINS 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "KINS 9995", + "title": "Master's Research in Kinesiology" + }, + { + "name": "KINS 9996", + "title": "Master's Thesis in Kinesiology" + }, + { + "name": "KINS 9998", + "title": "Dissertation Proposal Research" + }, + { + "name": "KINS 9999", + "title": "Doctoral Dissertation in Kinesiology" + }, + { + "name": "KINS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "KINS L000", + "title": "Elective LL" + }, + { + "name": "KINS T000", + "title": "Elective" + }, + { + "name": "KINS U000", + "title": "Elective UL" + }, + { + "name": "KLN 0873", + "title": "Media in a Hyper-Mediated World" + }, + { + "name": "KLN 1001", + "title": "Klein Freshman Seminar" + }, + { + "name": "KLN 1002", + "title": "Klein College Introduction to Professional Development" + }, + { + "name": "KLN 1101", + "title": "Field Experience" + }, + { + "name": "KLN 2001", + "title": "Klein College Experience" + }, + { + "name": "KLN 3001", + "title": "Klein Launch: Professional Development Seminar" + }, + { + "name": "KLN 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "KLN 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "KLN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "KRN 0868", + "title": "World Society in Literature and Film" + }, + { + "name": "KRN 1001", + "title": "Korean Elements I " + }, + { + "name": "KRN 1002", + "title": "Korean Elements II" + }, + { + "name": "KRN 2001", + "title": "Korean Intermediate I" + }, + { + "name": "KRN 2002", + "title": "Korean Intermediate II" + }, + { + "name": "KRN 3000", + "title": "Korean Special Topics I" + }, + { + "name": "KRN 3001", + "title": "Korean Advanced I" + }, + { + "name": "KRN 3002", + "title": "Korean Advanced II" + }, + { + "name": "KRN 3010", + "title": "Korean Special Topics II" + }, + { + "name": "KRN 3183", + "title": "Korean Directed Readings I" + }, + { + "name": "KRN 3283", + "title": "Korean Directed Readings II" + }, + { + "name": "KRN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "LARC 0841", + "title": "Sustainable Design" + }, + { + "name": "LARC 0852", + "title": "Green vs. Gray: Improving and Sustaining Urban Ecosystems" + }, + { + "name": "LARC 1013", + "title": "Natural and the Built Environment" + }, + { + "name": "LARC 1044", + "title": "Landscape Architecture Foundation I" + }, + { + "name": "LARC 1111", + "title": "Introduction to Green Careers in Landscape Architecture" + }, + { + "name": "LARC 1144", + "title": "Landscape Architecture Foundation II" + }, + { + "name": "LARC 1244", + "title": "Surveying" + }, + { + "name": "LARC 1544", + "title": "Landscape Architecture Computer Technology I" + }, + { + "name": "LARC 1982", + "title": "Honors Projects" + }, + { + "name": "LARC 2143", + "title": "Landscape Architecture Design Studio I" + }, + { + "name": "LARC 2144", + "title": "Landscape Architecture Design Studio II" + }, + { + "name": "LARC 2241", + "title": "Landscape Engineering I" + }, + { + "name": "LARC 2242", + "title": "Landscape Engineering II" + }, + { + "name": "LARC 2243", + "title": "Landscape Engineering II" + }, + { + "name": "LARC 2457", + "title": "American Traditions of Landscape Architecture" + }, + { + "name": "LARC 2496", + "title": "Landscape Traditions" + }, + { + "name": "LARC 2551", + "title": "Landscape Architecture Computer Technology II" + }, + { + "name": "LARC 2553", + "title": "Landscape Architectural Computer Graphics" + }, + { + "name": "LARC 2564", + "title": "Landscape Architecture Computer Technology III" + }, + { + "name": "LARC 2754", + "title": "Water Design in the City" + }, + { + "name": "LARC 2758", + "title": "Summer Field Ecology" + }, + { + "name": "LARC 2870", + "title": "Special Topics" + }, + { + "name": "LARC 2885", + "title": "Internship" + }, + { + "name": "LARC 3145", + "title": "Landscape Architecture Design Studio III" + }, + { + "name": "LARC 3146", + "title": "Landscape Architecture Design Studio IV: Design/Build" + }, + { + "name": "LARC 3243", + "title": "Landscape Engineering III" + }, + { + "name": "LARC 3345", + "title": "Planting Design" + }, + { + "name": "LARC 3644", + "title": "Professional Practice" + }, + { + "name": "LARC 3665", + "title": "Grant Writing" + }, + { + "name": "LARC 3789", + "title": "Landscape Restoration Workshop" + }, + { + "name": "LARC 3882", + "title": "Independent Study" + }, + { + "name": "LARC 4147", + "title": "Landscape Architecture Design Studio V: Fall Senior Studio" + }, + { + "name": "LARC 4198", + "title": "Landscape Architecture Design Studio VI: Spring Senior Studio" + }, + { + "name": "LARC 5544", + "title": "Landscape Architecture Computer Technology I" + }, + { + "name": "LARC 5551", + "title": "Landscape Architecture Computer Technology II" + }, + { + "name": "LARC 5564", + "title": "Landscape Architecture Computer Technology III" + }, + { + "name": "LARC 5665", + "title": "Grant Writing" + }, + { + "name": "LARC 8141", + "title": "Design Communications/Introductory Design Studio I" + }, + { + "name": "LARC 8144", + "title": "Landscape Design Studio II" + }, + { + "name": "LARC 8151", + "title": "Woodland Design Studio" + }, + { + "name": "LARC 8152", + "title": "Wetland/Riparian Design Studio" + }, + { + "name": "LARC 8153", + "title": "Public Lands Design Studio" + }, + { + "name": "LARC 8241", + "title": "Landscape Engineering I" + }, + { + "name": "LARC 8242", + "title": "Landscape Engineering II" + }, + { + "name": "LARC 8351", + "title": "Aesthetics of Ecological Design Seminar" + }, + { + "name": "LARC 8355", + "title": "Capstone Seminar" + }, + { + "name": "LARC 8496", + "title": "Landscape Traditions" + }, + { + "name": "LARC 8552", + "title": "Research Design Methods" + }, + { + "name": "LARC 8644", + "title": "Professional Practice" + }, + { + "name": "LARC 8751", + "title": "Northeastern Woodland Ecosystems" + }, + { + "name": "LARC 8752", + "title": "Wetland Ecology" + }, + { + "name": "LARC 8755", + "title": "Native Plant Communities" + }, + { + "name": "LARC 8789", + "title": "Landscape Restoration Workshop" + }, + { + "name": "LARC 8860", + "title": "Topics in Landscape Architecture" + }, + { + "name": "LARC 8870", + "title": "Topics in Landscape Architecture" + }, + { + "name": "LARC 8889", + "title": "Restoration Monitoring Workshop" + }, + { + "name": "LARC 9883", + "title": "Directed Reading/Study" + }, + { + "name": "LARC 9995", + "title": "Capstone Restoration Design Project" + }, + { + "name": "LARC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "LARC L000", + "title": "Elective LL" + }, + { + "name": "LARC T000", + "title": "Elective" + }, + { + "name": "LARC T001", + "title": "Elective" + }, + { + "name": "LARC T003", + "title": "Elective" + }, + { + "name": "LARC T005", + "title": "Elective" + }, + { + "name": "LARC T010", + "title": "Elective" + }, + { + "name": "LARC U000", + "title": "Elective UL" + }, + { + "name": "LAT 1001", + "title": "Latin 1" + }, + { + "name": "LAT 1002", + "title": "Latin 2" + }, + { + "name": "LAT 2001", + "title": "Latin 3" + }, + { + "name": "LAT 2002", + "title": "Latin 4" + }, + { + "name": "LAT 3002", + "title": "Readings in Latin Literature II" + }, + { + "name": "LAT 3096", + "title": "Readings in Latin Literature I" + }, + { + "name": "LAT 4000", + "title": "Special Topics" + }, + { + "name": "LAT 4001", + "title": "Cicero: Selections" + }, + { + "name": "LAT 4002", + "title": "Cicero: Philosophical Works" + }, + { + "name": "LAT 4003", + "title": "Seneca" + }, + { + "name": "LAT 4004", + "title": "Roman Historians" + }, + { + "name": "LAT 4005", + "title": "Roman Lyric Poets" + }, + { + "name": "LAT 4006", + "title": "Medieval Latin" + }, + { + "name": "LAT 4007", + "title": "Vergil: Aeneid" + }, + { + "name": "LAT 4008", + "title": "Ovid: Selections" + }, + { + "name": "LAT 4009", + "title": "Roman Epic Poets" + }, + { + "name": "LAT 4011", + "title": "Prose Composition" + }, + { + "name": "LAT 4082", + "title": "Independent Study" + }, + { + "name": "LAT 8001", + "title": "Graduate Readings: Classical" + }, + { + "name": "LAT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "LAT F000", + "title": "* See Statement Below" + }, + { + "name": "LAT L000", + "title": "Elective LL" + }, + { + "name": "LAT P000", + "title": "Elective P" + }, + { + "name": "LAT U000", + "title": "Elective UL" + }, + { + "name": "LAS 0833", + "title": "Race & Poverty in the Americas" + }, + { + "name": "LAS 0854", + "title": "Latino Immigration" + }, + { + "name": "LAS 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "LAS 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "LAS 1001", + "title": "Perspectives on Latin America" + }, + { + "name": "LAS 1022", + "title": "Latin American Social Struggles" + }, + { + "name": "LAS 1051", + "title": "Che Guevara and the Question of Revolution" + }, + { + "name": "LAS 2010", + "title": "Topics in Latin American Studies I" + }, + { + "name": "LAS 2020", + "title": "Topics in Latino Studies" + }, + { + "name": "LAS 2030", + "title": "Topics in Caribbean Studies" + }, + { + "name": "LAS 2040", + "title": "Special Topics" + }, + { + "name": "LAS 2072", + "title": "Puerto Ricans in Philadelphia" + }, + { + "name": "LAS 2097", + "title": "Writing Seminar I" + }, + { + "name": "LAS 2098", + "title": "The Legacy of Mesoamerica" + }, + { + "name": "LAS 2101", + "title": "Latin America through Film and Fiction" + }, + { + "name": "LAS 2169", + "title": "Archaeology of South America" + }, + { + "name": "LAS 2173", + "title": "Ancient Mesoamerica" + }, + { + "name": "LAS 2220", + "title": "Special Topics - LASS Seminar" + }, + { + "name": "LAS 2231", + "title": "Comparative Political Systems in Latin America" + }, + { + "name": "LAS 2232", + "title": "Politics of Development in Latin America" + }, + { + "name": "LAS 2361", + "title": "Peoples of Latin America" + }, + { + "name": "LAS 2362", + "title": "Peoples and Cultures of the Caribbean" + }, + { + "name": "LAS 2502", + "title": "Fundamentals of Latin American Business" + }, + { + "name": "LAS 2512", + "title": "Mexican Migration to the United States" + }, + { + "name": "LAS 2514", + "title": "Historical Continuity and Social Change in Latin America" + }, + { + "name": "LAS 2515", + "title": "Civilization and Modernity in the Caribbean" + }, + { + "name": "LAS 2525", + "title": "Maya Language and Culture" + }, + { + "name": "LAS 3010", + "title": "Topics in Latin American Studies II" + }, + { + "name": "LAS 3020", + "title": "Topics in Latino Studies" + }, + { + "name": "LAS 3101", + "title": "Latino Identity in the United States" + }, + { + "name": "LAS 3201", + "title": "California Dreams, California Nightmares" + }, + { + "name": "LAS 3267", + "title": "Sociology of Music: Nation, Race, Class and Gender in Argentina and Brazil" + }, + { + "name": "LAS 3561", + "title": "History of Brazil" + }, + { + "name": "LAS 3562", + "title": "Contemporary Mexico" + }, + { + "name": "LAS 3563", + "title": "Puerto Rican History" + }, + { + "name": "LAS 3566", + "title": "Race, Gender, and Empire in the Iberian World" + }, + { + "name": "LAS 3601", + "title": "\"Other Voices\" in Latin American Literature" + }, + { + "name": "LAS 3602", + "title": "Caribbean Literature and Culture" + }, + { + "name": "LAS 3702", + "title": "African Religions and New World Culture" + }, + { + "name": "LAS 3801", + "title": "African Culture in Brazil" + }, + { + "name": "LAS 4082", + "title": "Independent Study" + }, + { + "name": "LAS 4097", + "title": "Latin American Studies Seminar" + }, + { + "name": "LAS 4698", + "title": "Revolutionary Mexico" + }, + { + "name": "LAS 5001", + "title": "Process and Change in Latin America" + }, + { + "name": "LAS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "LAS L000", + "title": "Elective LL" + }, + { + "name": "LAS P000", + "title": "Elective P" + }, + { + "name": "LAS T000", + "title": "Elective" + }, + { + "name": "LAS U000", + "title": "Elective UL" + }, + { + "name": "LAWU 0801", + "title": "Border Crossings: Gendered Dimensions of Globalization" + }, + { + "name": "LAWU 0825", + "title": "The United States Constitution and Popular Culture" + }, + { + "name": "LAWU 0833", + "title": "Law and Literature, Law in Fact" + }, + { + "name": "LAWU 0834", + "title": "Understanding Justice" + }, + { + "name": "LAWU 0854", + "title": "Education in the Global City" + }, + { + "name": "LAWU 0875", + "title": "Law Beyond Borders" + }, + { + "name": "LAWU E000", + "title": "Elective - needs evaluation" + }, + { + "name": "LGLS 0803", + "title": "African Americans, Equality and the Law: Weapon or Tool?" + }, + { + "name": "LGLS 0805", + "title": "Sexual Orientation, Gender Identity and the Law" + }, + { + "name": "LGLS 0856", + "title": "Law and American Society" + }, + { + "name": "LGLS 0903", + "title": "Honors African Americans, Equality and the Law: Weapon or Tool?" + }, + { + "name": "LGLS 0905", + "title": "Honors Sexual Orientation, Gender Identity and the Law" + }, + { + "name": "LGLS 0956", + "title": "Honors Law and American Society" + }, + { + "name": "LGLS 1001", + "title": "Law in Society" + }, + { + "name": "LGLS 1101", + "title": "Legal Environment of Business" + }, + { + "name": "LGLS 1102", + "title": "Law of Contracts" + }, + { + "name": "LGLS 1112", + "title": "Law for Business" + }, + { + "name": "LGLS 1901", + "title": "Honors Legal Environment of Business" + }, + { + "name": "LGLS 3501", + "title": "Introduction to Corporate Compliance" + }, + { + "name": "LGLS 3504", + "title": "Sports and the Law" + }, + { + "name": "LGLS 3506", + "title": "Law, Technology and E-Commerce" + }, + { + "name": "LGLS 3507", + "title": "Business Law for Accountants" + }, + { + "name": "LGLS 3509", + "title": "Entertainment Law" + }, + { + "name": "LGLS 3511", + "title": "Environmental Law and Sustainability" + }, + { + "name": "LGLS 3513", + "title": "Public Policy" + }, + { + "name": "LGLS 3519", + "title": "Tax, Estate and Trust Planning" + }, + { + "name": "LGLS 3521", + "title": "Corporate Governance" + }, + { + "name": "LGLS 3522", + "title": "Technology, Privacy and Intellectual Property Law" + }, + { + "name": "LGLS 3523", + "title": "Detecting Financial Crimes" + }, + { + "name": "LGLS 3524", + "title": "Legal and Policy Issues in the Workplace" + }, + { + "name": "LGLS 3562", + "title": "Legal Aspects of Global Business" + }, + { + "name": "LGLS 3580", + "title": "Special Topics - Law" + }, + { + "name": "LGLS 3581", + "title": "Pre-Law Internship and Seminar" + }, + { + "name": "LGLS 3582", + "title": "Independent Study" + }, + { + "name": "LGLS 3682", + "title": "Independent Study" + }, + { + "name": "LGLS 3900", + "title": "Honors Special Topics" + }, + { + "name": "LGLS 3999", + "title": "Honors Thesis I" + }, + { + "name": "LGLS 4596", + "title": "Legal Reasoning in Action" + }, + { + "name": "LGLS 4999", + "title": "Honors Thesis II" + }, + { + "name": "LGLS 5051", + "title": "Business Law" + }, + { + "name": "LGLS 5131", + "title": "Environ Law & Corp Resp" + }, + { + "name": "LGLS 5155", + "title": "E-Commerce Law & Regulation" + }, + { + "name": "LGLS 5170", + "title": "Special Topics" + }, + { + "name": "LGLS 5180", + "title": "Special Topics" + }, + { + "name": "LGLS 5182", + "title": "Independent Study" + }, + { + "name": "LGLS 5190", + "title": "Special Topics - Law" + }, + { + "name": "LGLS 5282", + "title": "Independent Study" + }, + { + "name": "LGLS 5301", + "title": "Business Law" + }, + { + "name": "LGLS 5602", + "title": "Ethics in the Public and Commercial Sectors" + }, + { + "name": "LGLS 5603", + "title": "Public Policy and Regulatory Process" + }, + { + "name": "LGLS 5604", + "title": "Corporate Compliance" + }, + { + "name": "LGLS 5605", + "title": "Corporate Governance and Responsibility" + }, + { + "name": "LGLS 5606", + "title": "Forensic Accounting" + }, + { + "name": "LGLS 5607", + "title": "Global Public Policy and Business" + }, + { + "name": "LGLS 5611", + "title": "Compliance in the Financial Services Industry" + }, + { + "name": "LGLS 5612", + "title": "Ethics in the Financial Services Industry" + }, + { + "name": "LGLS 5613", + "title": "Compliance in Healthcare" + }, + { + "name": "LGLS 5614", + "title": "Ethics in Healthcare" + }, + { + "name": "LGLS 5615", + "title": "Risk Management and Compliance" + }, + { + "name": "LGLS 5616", + "title": "Anti-Money Laundering" + }, + { + "name": "LGLS 5617", + "title": "Sustainability in Business" + }, + { + "name": "LGLS 5618", + "title": "Compliance in the Government Services Industry" + }, + { + "name": "LGLS 5619", + "title": "Ethics in Government Services Industry" + }, + { + "name": "LGLS 5622", + "title": "Law and Policy of the Workplace" + }, + { + "name": "LGLS 5623", + "title": "Cyber-Security and Privacy" + }, + { + "name": "LGLS 5701", + "title": "Legal and Ethical Foundations of Business" + }, + { + "name": "LGLS 5801", + "title": "Business Ethics" + }, + { + "name": "LGLS 5882", + "title": "Independent Stuudy" + }, + { + "name": "LGLS 5890", + "title": "Special Topics" + }, + { + "name": "LGLS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "LGBT 2002", + "title": "Religion and Human Sexuality East & West" + }, + { + "name": "LGBT 2007", + "title": "Creative Writing: Fiction: LGBTQ Lives" + }, + { + "name": "LGBT 2207", + "title": "Creative Writing: Non-Fiction: Queer Lives" + }, + { + "name": "LGBT 2305", + "title": "LGBTQ Film: The Coming of Age Genre" + }, + { + "name": "LGBT 2306", + "title": "LGBTQ Film: Queer Representation" + }, + { + "name": "LGBT 2400", + "title": "Topics in LGBT Studies" + }, + { + "name": "LGBT 2405", + "title": "Gay and Lesbian Lives" + }, + { + "name": "LGBT 2406", + "title": "LGBTQ Social Movements" + }, + { + "name": "LGBT 3205", + "title": "Queer Novels of the 20th Century" + }, + { + "name": "LGBT 3206", + "title": "Queer Novels of the 21st Century" + }, + { + "name": "LGBT 3400", + "title": "Topics in LGBT Studies" + }, + { + "name": "LGBT 4489", + "title": "Field Work in LGBT Studies" + }, + { + "name": "LGBT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MIS 0855", + "title": "Data Science" + }, + { + "name": "MIS 0955", + "title": "Honors Data Science" + }, + { + "name": "MIS 2101", + "title": "Information Systems in Organizations" + }, + { + "name": "MIS 2402", + "title": "Data-Centric Application Development" + }, + { + "name": "MIS 2502", + "title": "Data Analytics" + }, + { + "name": "MIS 2901", + "title": "Honors: Information Systems in Organizations" + }, + { + "name": "MIS 3406", + "title": "Enterprise IT Architecture" + }, + { + "name": "MIS 3502", + "title": "Application Integration and Evaluation" + }, + { + "name": "MIS 3503", + "title": "User Interface Design" + }, + { + "name": "MIS 3504", + "title": "Digital Design and Innovation" + }, + { + "name": "MIS 3505", + "title": "Applied Predictive Analytics" + }, + { + "name": "MIS 3506", + "title": "Digital Solutions Studio" + }, + { + "name": "MIS 3507", + "title": "Defending Against Cyber Crime" + }, + { + "name": "MIS 3533", + "title": "Electronic Commerce Site Design" + }, + { + "name": "MIS 3534", + "title": "Strategic Management of Information Technology" + }, + { + "name": "MIS 3535", + "title": "Lead Global Digital Projects" + }, + { + "name": "MIS 3536", + "title": "Information Systems Innovation" + }, + { + "name": "MIS 3537", + "title": "Internet Enabled Supply Chains" + }, + { + "name": "MIS 3538", + "title": "Social Media Innovation" + }, + { + "name": "MIS 3580", + "title": "Special Topics" + }, + { + "name": "MIS 3581", + "title": "Co-operative Experience in Management Information Systems" + }, + { + "name": "MIS 3582", + "title": "Independent Study" + }, + { + "name": "MIS 3682", + "title": "Independent Study" + }, + { + "name": "MIS 3999", + "title": "Honors Thesis I" + }, + { + "name": "MIS 4596", + "title": "Information Systems Integration" + }, + { + "name": "MIS 4999", + "title": "Honors Senior Thesis II" + }, + { + "name": "MIS 5001", + "title": "Information Technology Management" + }, + { + "name": "MIS 5101", + "title": "Business Intelligence" + }, + { + "name": "MIS 5102", + "title": "Process Improvement and Innovation" + }, + { + "name": "MIS 5103", + "title": "Network Architectures for Business" + }, + { + "name": "MIS 5104", + "title": "Network Centric Applica" + }, + { + "name": "MIS 5105", + "title": "Emerging Technologies" + }, + { + "name": "MIS 5106", + "title": "Objct Oriented Computing" + }, + { + "name": "MIS 5107", + "title": "Knowledge Mgmt/Bus Intel" + }, + { + "name": "MIS 5108", + "title": "Digital Business Strategy" + }, + { + "name": "MIS 5109", + "title": "User Interface Design" + }, + { + "name": "MIS 5112", + "title": "Business Design and Innovation" + }, + { + "name": "MIS 5121", + "title": "Enterprise Resource Planning Systems" + }, + { + "name": "MIS 5122", + "title": "Enterprise Architecture for IT Auditors" + }, + { + "name": "MIS 5123", + "title": "Business Essentials for IT Audits" + }, + { + "name": "MIS 5161", + "title": "Inf Sys Applications-Org" + }, + { + "name": "MIS 5162", + "title": "Database Mgt Sys & Model" + }, + { + "name": "MIS 5163", + "title": "Sys Anal/Rapid App Dev" + }, + { + "name": "MIS 5164", + "title": "Inf Tech Prin-Network-BS" + }, + { + "name": "MIS 5170", + "title": "Special Topics" + }, + { + "name": "MIS 5178", + "title": "Inf Architect & Network" + }, + { + "name": "MIS 5179", + "title": "Inf Systems Mgt & Proces" + }, + { + "name": "MIS 5182", + "title": "Independent Study" + }, + { + "name": "MIS 5190", + "title": "Special Topics in MIS" + }, + { + "name": "MIS 5201", + "title": "IT Audit Process" + }, + { + "name": "MIS 5202", + "title": "IT Governance" + }, + { + "name": "MIS 5203", + "title": "Systems and Infrastructure Lifecycle Management 1" + }, + { + "name": "MIS 5204", + "title": "Systems and Infrastructure Lifecycle Management 2" + }, + { + "name": "MIS 5205", + "title": "IT Service Delivery and Support" + }, + { + "name": "MIS 5206", + "title": "Protection of Information Assets" + }, + { + "name": "MIS 5208", + "title": "Data Analytics for IT Auditors" + }, + { + "name": "MIS 5209", + "title": "Securing Digital Infrastructure" + }, + { + "name": "MIS 5211", + "title": "Ethical Hacking" + }, + { + "name": "MIS 5212", + "title": "Penetration Testing" + }, + { + "name": "MIS 5213", + "title": "Intrusion Detection & Response" + }, + { + "name": "MIS 5214", + "title": "Security Architecture" + }, + { + "name": "MIS 5215", + "title": "Operating System Security" + }, + { + "name": "MIS 5216", + "title": "Organizational Forensics" + }, + { + "name": "MIS 5217", + "title": "Network Security" + }, + { + "name": "MIS 5282", + "title": "Independent Study" + }, + { + "name": "MIS 5287", + "title": "Business Skills for ITACS Professionals" + }, + { + "name": "MIS 5601", + "title": "Database Analytics" + }, + { + "name": "MIS 5602", + "title": "Applied Predictive Analytics" + }, + { + "name": "MIS 5603", + "title": "Social Media Innovation" + }, + { + "name": "MIS 5651", + "title": "Digital Innovation in Marketing Capstone" + }, + { + "name": "MIS 5687", + "title": "Business Skills for ITACS Professionals I" + }, + { + "name": "MIS 5688", + "title": "Business Skills for ITACS Professionals II" + }, + { + "name": "MIS 5801", + "title": "Managing Information" + }, + { + "name": "MIS 5882", + "title": "Independent Study" + }, + { + "name": "MIS 5890", + "title": "Special Topics" + }, + { + "name": "MIS 5901", + "title": "Capstone in Information Technology" + }, + { + "name": "MIS 5902", + "title": "IT Auditing Capstone" + }, + { + "name": "MIS 5903", + "title": "Cyber Security Capstone" + }, + { + "name": "MIS 9001", + "title": "Qual & Interpret Meth-IS" + }, + { + "name": "MIS 9002", + "title": "Inf Sys Found & Theory" + }, + { + "name": "MIS 9003", + "title": "Foundations of Electronic Commerce Research" + }, + { + "name": "MIS 9004", + "title": "Adv Research Methods-IS" + }, + { + "name": "MIS 9011", + "title": "Proseminar in Management Information Systems" + }, + { + "name": "MIS 9090", + "title": "Contemp Topics & Res-IS" + }, + { + "name": "MIS 9183", + "title": "Directed Study in MIS" + }, + { + "name": "MIS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MIS L000", + "title": "Elective LL" + }, + { + "name": "MSOM 3101", + "title": "Operations Management" + }, + { + "name": "MSOM 3682", + "title": "Independent Study" + }, + { + "name": "MSOM 3901", + "title": "Honors Operations Management" + }, + { + "name": "MSOM 5001", + "title": "Operations Management" + }, + { + "name": "MSOM 5107", + "title": "Lean, Six Sigma, and the Science of Improvement" + }, + { + "name": "MSOM 5108", + "title": "Project Management" + }, + { + "name": "MSOM 5111", + "title": "Optimization Methods" + }, + { + "name": "MSOM 5156", + "title": "Logistics and Supply Chain Management: Tools, Strategy, and e-Business Issues" + }, + { + "name": "MSOM 5170", + "title": "Special Topics" + }, + { + "name": "MSOM 5175", + "title": "Multi-Criteria Decision Analysis" + }, + { + "name": "MSOM 5182", + "title": "Independent Study" + }, + { + "name": "MSOM 5190", + "title": "Special Topics - MSOM" + }, + { + "name": "MSOM 5282", + "title": "Independent Study" + }, + { + "name": "MSOM 5806", + "title": "Managing Operations in the Enterprise" + }, + { + "name": "MSOM 5882", + "title": "Independent Study" + }, + { + "name": "MSOM 5890", + "title": "Special Topics" + }, + { + "name": "MSOM 9101", + "title": "Continuous and Nonlinear Optimization Methods" + }, + { + "name": "MSOM 9102", + "title": "Linear Optimization Methods" + }, + { + "name": "MSOM 9103", + "title": "Combinatorial and Discrete Optimization" + }, + { + "name": "MSOM 9104", + "title": "Stochastic Modeling and Optimization" + }, + { + "name": "MSOM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MKTG 2101", + "title": "Marketing Management" + }, + { + "name": "MKTG 2511", + "title": "Marketing for the Sustainable Enterprise" + }, + { + "name": "MKTG 2901", + "title": "Honors Marketing Management" + }, + { + "name": "MKTG 3501", + "title": "Integrated Marketing Communications" + }, + { + "name": "MKTG 3502", + "title": "Information Management for Marketing Strategies" + }, + { + "name": "MKTG 3504", + "title": "Sales and Sales Management" + }, + { + "name": "MKTG 3505", + "title": "Entrepreneurial Marketing" + }, + { + "name": "MKTG 3506", + "title": "Value Delivery Networks in Marketing" + }, + { + "name": "MKTG 3507", + "title": "Direct Marketing" + }, + { + "name": "MKTG 3508", + "title": "Digital Marketing" + }, + { + "name": "MKTG 3509", + "title": "Customer Data Analytics" + }, + { + "name": "MKTG 3511", + "title": "Marketing Research" + }, + { + "name": "MKTG 3512", + "title": "Professional Selling" + }, + { + "name": "MKTG 3553", + "title": "International Marketing" + }, + { + "name": "MKTG 3580", + "title": "Special Topics - Marketing" + }, + { + "name": "MKTG 3581", + "title": "Marketing Internship/Co-Operative Experience" + }, + { + "name": "MKTG 3582", + "title": "Independent Study" + }, + { + "name": "MKTG 3596", + "title": "Consumer and Buyer Behavior" + }, + { + "name": "MKTG 3682", + "title": "Independent Study" + }, + { + "name": "MKTG 3999", + "title": "Honors Thesis I" + }, + { + "name": "MKTG 4501", + "title": "Marketing Strategy" + }, + { + "name": "MKTG 4999", + "title": "Honors Senior Thesis II" + }, + { + "name": "MKTG 5001", + "title": "Marketing Management/Strategy" + }, + { + "name": "MKTG 5101", + "title": "Consumer and Buyer Behavior" + }, + { + "name": "MKTG 5102", + "title": "Marketing Communications" + }, + { + "name": "MKTG 5103", + "title": "Marketing Research: Techniques and Application" + }, + { + "name": "MKTG 5104", + "title": "Marketing Strategy" + }, + { + "name": "MKTG 5105", + "title": "Electronic Commerce" + }, + { + "name": "MKTG 5106", + "title": "Electronic Channels, Supply Chain, Logistics & Procurement" + }, + { + "name": "MKTG 5107", + "title": "Product Management" + }, + { + "name": "MKTG 5108", + "title": "Data and Financial Driven Marketing" + }, + { + "name": "MKTG 5109", + "title": "Mobile Marketing and Communications" + }, + { + "name": "MKTG 5111", + "title": "Customer Data Analytics" + }, + { + "name": "MKTG 5114", + "title": "Digital and Interactive Marketing Strategy" + }, + { + "name": "MKTG 5115", + "title": "International Marketing" + }, + { + "name": "MKTG 5118", + "title": "Marketing MS Capstone" + }, + { + "name": "MKTG 5155", + "title": "Elec Supply Chain Mgt" + }, + { + "name": "MKTG 5156", + "title": "Mktg Mgt-Digital Mktplac" + }, + { + "name": "MKTG 5170", + "title": "Special Topics in Marketing" + }, + { + "name": "MKTG 5180", + "title": "Special Topics in Marketing" + }, + { + "name": "MKTG 5182", + "title": "Independent Study" + }, + { + "name": "MKTG 5190", + "title": "Special Topics in Marketing" + }, + { + "name": "MKTG 5282", + "title": "Independent Study" + }, + { + "name": "MKTG 5303", + "title": "Market Analysis and Strategy" + }, + { + "name": "MKTG 5403", + "title": "Market Analysis and Strategy" + }, + { + "name": "MKTG 5502", + "title": "International Marketing Management" + }, + { + "name": "MKTG 5601", + "title": "Database Marketing" + }, + { + "name": "MKTG 5602", + "title": "Quantitative Methods in Marketing" + }, + { + "name": "MKTG 5603", + "title": "Direct Marketing" + }, + { + "name": "MKTG 5604", + "title": "Digital Marketing" + }, + { + "name": "MKTG 5605", + "title": "Digital Innovation in Product Management and Branding" + }, + { + "name": "MKTG 5606", + "title": "Digital Innovation in Mobile Marketing and Communication" + }, + { + "name": "MKTG 5611", + "title": "Consumer Behavior 1: Thoughtful Decisions" + }, + { + "name": "MKTG 5612", + "title": "Consumer Behavior 2: Consumers as non-rational decision makers" + }, + { + "name": "MKTG 5613", + "title": "Customer Data Analytics 1" + }, + { + "name": "MKTG 5614", + "title": "Customer Data Analytics 2" + }, + { + "name": "MKTG 5615", + "title": "Database Management in Marketing 1" + }, + { + "name": "MKTG 5616", + "title": "Database Management in Marketing 2" + }, + { + "name": "MKTG 5617", + "title": "Market Research 1: Foundations of Marketing Research" + }, + { + "name": "MKTG 5618", + "title": "Market Research 2: Marketing Intelligence" + }, + { + "name": "MKTG 5621", + "title": "Integrated Marketing Communications" + }, + { + "name": "MKTG 5622", + "title": "Advertising and Account Management" + }, + { + "name": "MKTG 5623", + "title": "Direct Marketing 1" + }, + { + "name": "MKTG 5624", + "title": "Direct Marketing 2: Program Design, Deployment and Evaluation" + }, + { + "name": "MKTG 5625", + "title": "Digital Marketing 1: Foundations and Theories" + }, + { + "name": "MKTG 5626", + "title": "Digital Marketing 2: Program Design and Evaluation" + }, + { + "name": "MKTG 5635", + "title": "New Product Development: Strategy and Process" + }, + { + "name": "MKTG 5636", + "title": "Product and Brand Management" + }, + { + "name": "MKTG 5637", + "title": "Marketing and Cross Cultural Problem Solving 1" + }, + { + "name": "MKTG 5638", + "title": "Marketing and Cross Cultural Problem Solving 2" + }, + { + "name": "MKTG 5641", + "title": "Methods and Tools in Marketing Strategy Decisions" + }, + { + "name": "MKTG 5642", + "title": "Critical Analysis of Strategic Decisions in Marketing Management" + }, + { + "name": "MKTG 5680", + "title": "Special Topics" + }, + { + "name": "MKTG 5682", + "title": "Independent Study" + }, + { + "name": "MKTG 5690", + "title": "Special Topics" + }, + { + "name": "MKTG 5801", + "title": "Marketing Management in the Enterprise" + }, + { + "name": "MKTG 5882", + "title": "Independent Study" + }, + { + "name": "MKTG 5890", + "title": "Special Topics in Marketing" + }, + { + "name": "MKTG 9001", + "title": "Sem-Marketing Theory Dev" + }, + { + "name": "MKTG 9002", + "title": "Sem-Behavior Res-Mktg" + }, + { + "name": "MKTG 9003", + "title": "Sem-Quant Research-Mktg" + }, + { + "name": "MKTG 9005", + "title": "Seminar in Judgment and Decision Making" + }, + { + "name": "MKTG 9011", + "title": "Proseminar in Marketing" + }, + { + "name": "MKTG 9090", + "title": "Sem-Sel Topics in Mktg" + }, + { + "name": "MKTG 9183", + "title": "Directed Study in Marketing" + }, + { + "name": "MKTG E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MLA 5011", + "title": "Introduction to Interdisciplinary Studies" + }, + { + "name": "MLA 5082", + "title": "Independent Study" + }, + { + "name": "MLA 5110", + "title": "Topics in the Arts and American Culture" + }, + { + "name": "MLA 5120", + "title": "Topics in Cultural Studies" + }, + { + "name": "MLA 5130", + "title": "Topics in Visual Culture" + }, + { + "name": "MLA 5140", + "title": "Topics in Performance Studies" + }, + { + "name": "MLA 5150", + "title": "Topics in Gender Studies" + }, + { + "name": "MLA 5160", + "title": "Topics in Environmental Studies" + }, + { + "name": "MLA 5171", + "title": "Intellectual Heritage, MLA" + }, + { + "name": "MLA 5180", + "title": "Ways of Seeing" + }, + { + "name": "MLA 5190", + "title": "Topics in Modernism" + }, + { + "name": "MLA 5210", + "title": "Topics in Political Culture" + }, + { + "name": "MLA 5220", + "title": "Topics in Urban Studies" + }, + { + "name": "MLA 5230", + "title": "Topics in International Studies" + }, + { + "name": "MLA 5250", + "title": "Topics in Science, Technology, and Culture" + }, + { + "name": "MLA 8021", + "title": "Foundations of Modern Thought I" + }, + { + "name": "MLA 8031", + "title": "Foundations of Modern Thought II" + }, + { + "name": "MLA 8041", + "title": "Foundations of American Culture" + }, + { + "name": "MLA 8300", + "title": "Special Topics - MLA" + }, + { + "name": "MLA 9995", + "title": "Master's Project" + }, + { + "name": "MAES 2189", + "title": "Classroom Interactions" + }, + { + "name": "MAES 3145", + "title": "Teaching and Learning Mathematics in the Middle Grades" + }, + { + "name": "MAES 3146", + "title": "Methods and Materials in Secondary Mathematics" + }, + { + "name": "MAES 3147", + "title": "Geometry and its Classroom Implications" + }, + { + "name": "MAES 3278", + "title": "Professional Subject Matter: Statistics" + }, + { + "name": "MAES 4146", + "title": "Teaching and Learning Mathematics in High School" + }, + { + "name": "MAES 4189", + "title": "Project-Based Instruction" + }, + { + "name": "MAES 4366", + "title": "The Teaching of Problem Solving" + }, + { + "name": "MAES 4371", + "title": "History of Mathematics" + }, + { + "name": "MAES 5469", + "title": "Spec Proj Math Ed" + }, + { + "name": "MAES 5471", + "title": "Teaching of Mathematics" + }, + { + "name": "MAES E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MATH 0701", + "title": "Basic Mathematics for Today's World" + }, + { + "name": "MATH 0702", + "title": "Intermediate Algebra" + }, + { + "name": "MATH 0823", + "title": "Math for a Digital World" + }, + { + "name": "MATH 0824", + "title": "Mathematical Patterns" + }, + { + "name": "MATH 0828", + "title": "Critical Reasoning and Problem Solving" + }, + { + "name": "MATH 0923", + "title": "Honors Math for a Digital World" + }, + { + "name": "MATH 0924", + "title": "Honors Mathematical Patterns" + }, + { + "name": "MATH 1013", + "title": "Elements of Statistics" + }, + { + "name": "MATH 1015", + "title": "Introduction to Numbers & Figures" + }, + { + "name": "MATH 1018", + "title": "Mathematics for Business" + }, + { + "name": "MATH 1021", + "title": "College Algebra" + }, + { + "name": "MATH 1022", + "title": "Precalculus" + }, + { + "name": "MATH 1031", + "title": "Differential and Integral Calculus" + }, + { + "name": "MATH 1033", + "title": "Computing in MATLAB" + }, + { + "name": "MATH 1034", + "title": "Applications in MATLAB" + }, + { + "name": "MATH 1039", + "title": "Lab for Calculus I" + }, + { + "name": "MATH 1041", + "title": "Calculus I" + }, + { + "name": "MATH 1042", + "title": "Calculus II" + }, + { + "name": "MATH 1044", + "title": "Introduction to Probability and Statistics for the Life Sciences" + }, + { + "name": "MATH 1941", + "title": "Honors Calculus I" + }, + { + "name": "MATH 1942", + "title": "Honors Calculus II" + }, + { + "name": "MATH 1951", + "title": "Honors Accelerated Calculus I & II" + }, + { + "name": "MATH 2021", + "title": "Functions and Modeling" + }, + { + "name": "MATH 2031", + "title": "Probability and Statistics" + }, + { + "name": "MATH 2043", + "title": "Calculus III" + }, + { + "name": "MATH 2061", + "title": "Euclidean Geometry" + }, + { + "name": "MATH 2082", + "title": "Sophomore Directed Study" + }, + { + "name": "MATH 2101", + "title": "Linear Algebra" + }, + { + "name": "MATH 2103", + "title": "Linear Algebra with Computer Lab" + }, + { + "name": "MATH 2111", + "title": "Basic Concepts of Math" + }, + { + "name": "MATH 2943", + "title": "Honors Calculus III" + }, + { + "name": "MATH 3003", + "title": "Theory of Numbers" + }, + { + "name": "MATH 3031", + "title": "Probability Theory I" + }, + { + "name": "MATH 3032", + "title": "Mathematical Statistics" + }, + { + "name": "MATH 3041", + "title": "Differential Equations I" + }, + { + "name": "MATH 3042", + "title": "Differential Equations II" + }, + { + "name": "MATH 3043", + "title": "Numerical Analysis I" + }, + { + "name": "MATH 3044", + "title": "Numerical Analysis II" + }, + { + "name": "MATH 3045", + "title": "Differential Equations with Linear Algebra" + }, + { + "name": "MATH 3046", + "title": "Differential Equations with Computer Lab" + }, + { + "name": "MATH 3051", + "title": "Theoretical Linear Algebra" + }, + { + "name": "MATH 3061", + "title": "Modern Geometry I" + }, + { + "name": "MATH 3082", + "title": "Junior Individual Study" + }, + { + "name": "MATH 3083", + "title": "Junior Directed Reading" + }, + { + "name": "MATH 3096", + "title": "Introduction to Modern Algebra" + }, + { + "name": "MATH 3098", + "title": "Modern Algebra" + }, + { + "name": "MATH 3101", + "title": "Topics in Modern Algebra" + }, + { + "name": "MATH 3137", + "title": "Real & Complex Analysis I" + }, + { + "name": "MATH 3138", + "title": "Real & Complex Analysis II" + }, + { + "name": "MATH 3141", + "title": "Advanced Calculus I" + }, + { + "name": "MATH 3142", + "title": "Advanced Calculus II" + }, + { + "name": "MATH 3500", + "title": "Topics in Contemporary Mathematics" + }, + { + "name": "MATH 3941", + "title": "Honors Differential Equations I" + }, + { + "name": "MATH 4001", + "title": "History of Mathematics" + }, + { + "name": "MATH 4003", + "title": "Combinatorics" + }, + { + "name": "MATH 4033", + "title": "Probability Theory II" + }, + { + "name": "MATH 4041", + "title": "Partial Differential Equations" + }, + { + "name": "MATH 4043", + "title": "Applied Mathematics" + }, + { + "name": "MATH 4051", + "title": "Complex Analysis" + }, + { + "name": "MATH 4061", + "title": "Differential Geometry" + }, + { + "name": "MATH 4063", + "title": "Topology I" + }, + { + "name": "MATH 4082", + "title": "Senior Individual Study" + }, + { + "name": "MATH 4083", + "title": "Senior Directed Reading" + }, + { + "name": "MATH 4096", + "title": "Senior Problem Solving" + }, + { + "name": "MATH 5000", + "title": "Special Topics in Math" + }, + { + "name": "MATH 5001", + "title": "Linear Algebra" + }, + { + "name": "MATH 5041", + "title": "Concepts of Analysis I" + }, + { + "name": "MATH 5042", + "title": "Concepts of Analysis II" + }, + { + "name": "MATH 5043", + "title": "Introduction to Numerical Analysis" + }, + { + "name": "MATH 5044", + "title": "Introduction to Numerical Analysis II" + }, + { + "name": "MATH 5045", + "title": "Ordinary Differential Equations" + }, + { + "name": "MATH 5061", + "title": "Fundamentals of Computer Programming for Scientists and Engineers" + }, + { + "name": "MATH 5063", + "title": "Introduction to High-Performance Computing Technology for Scientists" + }, + { + "name": "MATH 8001", + "title": "Candidates Seminar" + }, + { + "name": "MATH 8002", + "title": "Candidates Seminar" + }, + { + "name": "MATH 8003", + "title": "Number Theory" + }, + { + "name": "MATH 8004", + "title": "Number Theory" + }, + { + "name": "MATH 8007", + "title": "Introduction to Methods in Applied Mathematics I" + }, + { + "name": "MATH 8008", + "title": "Introduction to Methods in Applied Mathematics II" + }, + { + "name": "MATH 8011", + "title": "Abstract Algebra I" + }, + { + "name": "MATH 8012", + "title": "Abstract Algebra II" + }, + { + "name": "MATH 8013", + "title": "Numerical Linear Algebra I" + }, + { + "name": "MATH 8014", + "title": "Numerical Linear Algebra II" + }, + { + "name": "MATH 8023", + "title": "Numerical Differential Equations I" + }, + { + "name": "MATH 8024", + "title": "Numerical Differential Equations II" + }, + { + "name": "MATH 8031", + "title": "Probability Theory" + }, + { + "name": "MATH 8032", + "title": "Stochastic Processes" + }, + { + "name": "MATH 8041", + "title": "Real Analysis I" + }, + { + "name": "MATH 8042", + "title": "Real Analysis II" + }, + { + "name": "MATH 8051", + "title": "Functions of a Complex Variable I" + }, + { + "name": "MATH 8052", + "title": "Functions of a Complex Variable II" + }, + { + "name": "MATH 8061", + "title": "Differential Geometry and Topology I" + }, + { + "name": "MATH 8062", + "title": "Differential Geometry and Topology II" + }, + { + "name": "MATH 8107", + "title": "Mathematical Modeling for Science, Engineering, and Industry" + }, + { + "name": "MATH 8141", + "title": "Partial Differential Equations I" + }, + { + "name": "MATH 8142", + "title": "Partial Differential Equations II" + }, + { + "name": "MATH 8161", + "title": "Topology" + }, + { + "name": "MATH 8200", + "title": "Topics in Applied Mathematics" + }, + { + "name": "MATH 8210", + "title": "Topics in Applied Mathematics II" + }, + { + "name": "MATH 8700", + "title": "Topics Computer Program" + }, + { + "name": "MATH 8710", + "title": "Topics Computer Program" + }, + { + "name": "MATH 8985", + "title": "Teaching in Higher Education" + }, + { + "name": "MATH 9000", + "title": "Topics in Number Theory I" + }, + { + "name": "MATH 9003", + "title": "Modular Functions" + }, + { + "name": "MATH 9004", + "title": "Modular Functions" + }, + { + "name": "MATH 9005", + "title": "Combinatorial Mathematics" + }, + { + "name": "MATH 9010", + "title": "Topics in Number Theory II" + }, + { + "name": "MATH 9011", + "title": "Homological Algebra" + }, + { + "name": "MATH 9012", + "title": "Representation Theory I" + }, + { + "name": "MATH 9013", + "title": "Representation Theory II" + }, + { + "name": "MATH 9014", + "title": "Commutative Algebra and Algebraic Geometry I" + }, + { + "name": "MATH 9015", + "title": "Commutative Algebra and Algebraic Geometry II" + }, + { + "name": "MATH 9021", + "title": "Riemannian Geometry" + }, + { + "name": "MATH 9023", + "title": "Knot Theory and Low-Dimensional Topology I" + }, + { + "name": "MATH 9024", + "title": "Knot Theory and Low-Dimensional Topology II" + }, + { + "name": "MATH 9031", + "title": "Advanced Probability Theory" + }, + { + "name": "MATH 9041", + "title": "Functional Analysis I" + }, + { + "name": "MATH 9042", + "title": "Functional Analysis II" + }, + { + "name": "MATH 9043", + "title": "Calculus of Variations" + }, + { + "name": "MATH 9044", + "title": "Harmonic Analysis" + }, + { + "name": "MATH 9051", + "title": "Several Complex Variables I" + }, + { + "name": "MATH 9052", + "title": "Several Complex Variables II" + }, + { + "name": "MATH 9053", + "title": "Harmonic Analysis" + }, + { + "name": "MATH 9061", + "title": "Lie Groups" + }, + { + "name": "MATH 9062", + "title": "Lie Groups" + }, + { + "name": "MATH 9063", + "title": "Riemann Surfaces" + }, + { + "name": "MATH 9064", + "title": "Riemann Surfaces " + }, + { + "name": "MATH 9071", + "title": "Differential Topology" + }, + { + "name": "MATH 9072", + "title": "Differential Topology" + }, + { + "name": "MATH 9073", + "title": "Geometric Group Theory" + }, + { + "name": "MATH 9082", + "title": "Independent Study" + }, + { + "name": "MATH 9083", + "title": "Independent Study" + }, + { + "name": "MATH 9100", + "title": "Topics in Algebra" + }, + { + "name": "MATH 9110", + "title": "Topics in Algebra" + }, + { + "name": "MATH 9120", + "title": "Seminar in Algebra" + }, + { + "name": "MATH 9200", + "title": "Topics in Numerical Analysis" + }, + { + "name": "MATH 9210", + "title": "Topics in Numerical Analysis" + }, + { + "name": "MATH 9300", + "title": "Seminar in Probability" + }, + { + "name": "MATH 9310", + "title": "Seminar in Probability" + }, + { + "name": "MATH 9400", + "title": "Topics in Analysis" + }, + { + "name": "MATH 9410", + "title": "Topics in Functional Analysis" + }, + { + "name": "MATH 9420", + "title": "Topics in Differential Equations II" + }, + { + "name": "MATH 9991", + "title": "Master's Research Projects" + }, + { + "name": "MATH 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "MATH 9995", + "title": "Capstone Project" + }, + { + "name": "MATH 9996", + "title": "Master's Thesis Research" + }, + { + "name": "MATH 9998", + "title": "Pre-Dissertation Research / Elevation to Candidacy" + }, + { + "name": "MATH 9999", + "title": "Dissertation Research" + }, + { + "name": "MATH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MATH F000", + "title": "* See Statement Below" + }, + { + "name": "MATH L000", + "title": "Elective LL" + }, + { + "name": "MATH L001", + "title": "Elective" + }, + { + "name": "MATH P000", + "title": "Elective P" + }, + { + "name": "MATH U000", + "title": "Elective UL" + }, + { + "name": "MEE 0843", + "title": "Technology Transformations" + }, + { + "name": "MEE 0844", + "title": "The Bionic Human" + }, + { + "name": "MEE 0944", + "title": "Honors Bionic Human" + }, + { + "name": "MEE 1001", + "title": "Introduction to Mechanical Engineering" + }, + { + "name": "MEE 1019", + "title": "Automotive Design I" + }, + { + "name": "MEE 1029", + "title": "Automotive Design II" + }, + { + "name": "MEE 1039", + "title": "Automotive Design III" + }, + { + "name": "MEE 2011", + "title": "Linear Systems" + }, + { + "name": "MEE 2305", + "title": "Instrumentation and Data Acquisition Lab" + }, + { + "name": "MEE 3011", + "title": "Analysis and Computation of Linear Systems in Mechanical Engineering" + }, + { + "name": "MEE 3301", + "title": "Machine Theory and Design" + }, + { + "name": "MEE 3302", + "title": "Kinematics of Mechanisms" + }, + { + "name": "MEE 3304", + "title": "Mechanical Design and Fabrication" + }, + { + "name": "MEE 3305", + "title": "Materials Laboratory" + }, + { + "name": "MEE 3421", + "title": "Dynamic Systems" + }, + { + "name": "MEE 3422", + "title": "Modeling and Control of Electromechanical Systems" + }, + { + "name": "MEE 3506", + "title": "Fluid Mechanics Laboratory" + }, + { + "name": "MEE 4040", + "title": "Special Topics" + }, + { + "name": "MEE 4173", + "title": "Data Acquisition and Analysis for Engineers" + }, + { + "name": "MEE 4191", + "title": "Independent Research in Mechanical Engineering" + }, + { + "name": "MEE 4311", + "title": "Mechanics of Composite Materials" + }, + { + "name": "MEE 4382", + "title": "Independent Study in Mechanical Engineering" + }, + { + "name": "MEE 4405", + "title": "Vibrations Laboratory" + }, + { + "name": "MEE 4411", + "title": "Introduction to Mobile Robotics" + }, + { + "name": "MEE 4412", + "title": "Modern Dynamics for Robotics" + }, + { + "name": "MEE 4413", + "title": "Robotic Manipulation" + }, + { + "name": "MEE 4422", + "title": "Mechanical Vibrations" + }, + { + "name": "MEE 4506", + "title": "Energy Conversion Laboratory" + }, + { + "name": "MEE 4512", + "title": "Compressible Fluid Dynamics" + }, + { + "name": "MEE 4513", + "title": "Aerodynamics" + }, + { + "name": "MEE 4571", + "title": "Advanced Thermodynamics and Combustion" + }, + { + "name": "MEE 4572", + "title": "Heat and Mass Transfer" + }, + { + "name": "MEE 4573", + "title": "Internal Combustion Engines" + }, + { + "name": "MEE 4574", + "title": "Heating, Ventilating, and Air Conditioning" + }, + { + "name": "MEE 4575", + "title": "Renewable and Alternative Energy" + }, + { + "name": "MEE 4576", + "title": "Photovoltaic System Design for Engineers" + }, + { + "name": "MEE 4577", + "title": "Power Generation and Storage Technologies" + }, + { + "name": "MEE 4578", + "title": "Fundamentals of Combustion" + }, + { + "name": "MEE 4643", + "title": "Manufacturing Engineering" + }, + { + "name": "MEE 4731", + "title": "Cardiovascular Fluid Dynamics" + }, + { + "name": "MEE 5110", + "title": "Special Topics" + }, + { + "name": "MEE 5117", + "title": "Finite Element Analysis" + }, + { + "name": "MEE 5201", + "title": "Thermodynamics of Materials" + }, + { + "name": "MEE 5203", + "title": "Advanced Materials Science" + }, + { + "name": "MEE 5205", + "title": "Microscopy and Microanalysis of Materials" + }, + { + "name": "MEE 5211", + "title": "Frontiers in Mechanical Engineering" + }, + { + "name": "MEE 5312", + "title": "Mechanics of Composite Materials" + }, + { + "name": "MEE 5411", + "title": "Introduction to Mobile Robotics" + }, + { + "name": "MEE 5412", + "title": "Modern Dynamics for Robotics" + }, + { + "name": "MEE 5413", + "title": "Robotic Manipulation" + }, + { + "name": "MEE 5423", + "title": "Engineering Acoustics" + }, + { + "name": "MEE 5511", + "title": "Thermodynamic Properties" + }, + { + "name": "MEE 5512", + "title": "Compressible Fluid Dynamics" + }, + { + "name": "MEE 5575", + "title": "Renewable and Alternative Energy" + }, + { + "name": "MEE 5577", + "title": "Power Generation and Storage Technologies" + }, + { + "name": "MEE 5578", + "title": "Fundamentals of Combustion" + }, + { + "name": "MEE 5643", + "title": "Manufacturing Engineering" + }, + { + "name": "MEE 5731", + "title": "Cardiovascular Fluid Dynamics" + }, + { + "name": "MEE 5732", + "title": "Tissue Biomechanics" + }, + { + "name": "MEE 5733", + "title": "Viscoelasticity" + }, + { + "name": "MEE 8110", + "title": "Special Topics" + }, + { + "name": "MEE 8315", + "title": "Fracture Mechanics" + }, + { + "name": "MEE 9182", + "title": "Independent Study I" + }, + { + "name": "MEE 9282", + "title": "Independent Study II" + }, + { + "name": "MEE 9991", + "title": "Directed Research" + }, + { + "name": "MEE 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "MEE 9995", + "title": "Project" + }, + { + "name": "MEE 9996", + "title": "Thesis" + }, + { + "name": "MEE 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "MEE 9999", + "title": "Dissertation Research" + }, + { + "name": "MEE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MEE T000", + "title": "Elective" + }, + { + "name": "MSP 0821", + "title": "The Future of Your TV" + }, + { + "name": "MSP 0823", + "title": "Latin American Media" + }, + { + "name": "MSP 1001", + "title": "Video Production for Non-Majors" + }, + { + "name": "MSP 1011", + "title": "Introduction to Media Theory" + }, + { + "name": "MSP 1021", + "title": "Media and Society" + }, + { + "name": "MSP 1655", + "title": "The Business of Media" + }, + { + "name": "MSP 1701", + "title": "Introduction to Media Technology" + }, + { + "name": "MSP 2141", + "title": "Media Research" + }, + { + "name": "MSP 2421", + "title": "Media Popular Culture" + }, + { + "name": "MSP 2663", + "title": "The Recording Industry and Music Business" + }, + { + "name": "MSP 2701", + "title": "Introduction to Media Production" + }, + { + "name": "MSP 2721", + "title": "Voice-Over Techniques for Media" + }, + { + "name": "MSP 2741", + "title": "Introduction to Internet Studies and Web Authoring" + }, + { + "name": "MSP 2751", + "title": "Audio for Media" + }, + { + "name": "MSP 2889", + "title": "Field Experience in Youth Media and Media Literacy" + }, + { + "name": "MSP 2900", + "title": "Honors MSP Special Topics" + }, + { + "name": "MSP 3196", + "title": "Writing Workshop" + }, + { + "name": "MSP 3225", + "title": "Educational Multimedia Production" + }, + { + "name": "MSP 3296", + "title": "Travel Writing" + }, + { + "name": "MSP 3421", + "title": "Technology and Culture" + }, + { + "name": "MSP 3471", + "title": "Media and Cultural Differences" + }, + { + "name": "MSP 3473", + "title": "Media and the Environment" + }, + { + "name": "MSP 3572", + "title": "Communication and Development" + }, + { + "name": "MSP 3590", + "title": "Intermediate Topics in Media" + }, + { + "name": "MSP 3611", + "title": "Media Advertising" + }, + { + "name": "MSP 3631", + "title": "Media Sales" + }, + { + "name": "MSP 3663", + "title": "Marketing Music and Media" + }, + { + "name": "MSP 3701", + "title": "Genres of Media Production" + }, + { + "name": "MSP 3705", + "title": "Sound for Visual Media" + }, + { + "name": "MSP 3709", + "title": "Advanced Editing" + }, + { + "name": "MSP 3711", + "title": "Lighting For Media" + }, + { + "name": "MSP 3721", + "title": "Media Performance" + }, + { + "name": "MSP 3751", + "title": "Studio Music Recording Techniques" + }, + { + "name": "MSP 3771", + "title": "Podcast and Radio Production" + }, + { + "name": "MSP 3890", + "title": "Intermediate Topics in Media Production" + }, + { + "name": "MSP 4039", + "title": "Senior Seminar" + }, + { + "name": "MSP 4153", + "title": "Media Criticism" + }, + { + "name": "MSP 4182", + "title": "Independent Study" + }, + { + "name": "MSP 4221", + "title": "Information Technology Policy" + }, + { + "name": "MSP 4226", + "title": "Public Media" + }, + { + "name": "MSP 4252", + "title": "Law and Ethics of Digital Media" + }, + { + "name": "MSP 4275", + "title": "#ourmedia: Community, Activist, Citizens' and Radical Media" + }, + { + "name": "MSP 4296", + "title": "History of Electronic Media" + }, + { + "name": "MSP 4324", + "title": "The Video Game Industry and Game Culture" + }, + { + "name": "MSP 4390", + "title": "Advanced Topics in Institution Study" + }, + { + "name": "MSP 4425", + "title": "Lesbian, Gay, Bisexual, and Transgender Representation in Popular Media" + }, + { + "name": "MSP 4445", + "title": "Media Images and Analysis" + }, + { + "name": "MSP 4446", + "title": "Psychological Processing of Media" + }, + { + "name": "MSP 4453", + "title": "Information Society" + }, + { + "name": "MSP 4454", + "title": "Public Information Media Campaigns" + }, + { + "name": "MSP 4455", + "title": "New Media Literacies" + }, + { + "name": "MSP 4487", + "title": "TUTV Practicum" + }, + { + "name": "MSP 4496", + "title": "Global Media" + }, + { + "name": "MSP 4497", + "title": "Media and Children" + }, + { + "name": "MSP 4533", + "title": "Media, Ecology, and Technology" + }, + { + "name": "MSP 4540", + "title": "Advanced Topics in Media Studies and Production" + }, + { + "name": "MSP 4541", + "title": "Mobile Media" + }, + { + "name": "MSP 4571", + "title": "International Studies in Media and Communication" + }, + { + "name": "MSP 4572", + "title": "British Media and Telecommunication" + }, + { + "name": "MSP 4596", + "title": "TV News Production Practicum - Temple Update" + }, + { + "name": "MSP 4597", + "title": "Sports Production Practicum" + }, + { + "name": "MSP 4614", + "title": "Creating a Media Business" + }, + { + "name": "MSP 4641", + "title": "Programming for Multiplatform Media" + }, + { + "name": "MSP 4657", + "title": "Current Issues in Media Management" + }, + { + "name": "MSP 4663", + "title": "Art and Business of Record Production" + }, + { + "name": "MSP 4682", + "title": "Independent Projects" + }, + { + "name": "MSP 4687", + "title": "Recording Industry Practicum" + }, + { + "name": "MSP 4690", + "title": "Advanced Topics in Organizational Management" + }, + { + "name": "MSP 4696", + "title": "Communication in Media Organizations" + }, + { + "name": "MSP 4701", + "title": "Producing and Directing" + }, + { + "name": "MSP 4703", + "title": "Multimedia Production for Corporations and Non-Profits" + }, + { + "name": "MSP 4741", + "title": "Emergent Media Production" + }, + { + "name": "MSP 4751", + "title": "Audio Mixing" + }, + { + "name": "MSP 4753", + "title": "Audio Mastering" + }, + { + "name": "MSP 4785", + "title": "Internship" + }, + { + "name": "MSP 4786", + "title": "Internship" + }, + { + "name": "MSP 4787", + "title": "Television Production Workshop" + }, + { + "name": "MSP 4796", + "title": "Creative Scriptwriting" + }, + { + "name": "MSP 4887", + "title": "Radio Production Practicum" + }, + { + "name": "MSP 4890", + "title": "Advanced Topics in Media" + }, + { + "name": "MSP 4990", + "title": "Honors Special Topics" + }, + { + "name": "MSP 5011", + "title": "Introduction to Communication Concepts" + }, + { + "name": "MSP 5021", + "title": "Media Institutions" + }, + { + "name": "MSP 5041", + "title": "Communication Content and Behavior" + }, + { + "name": "MSP 5042", + "title": "Media Technology and Culture" + }, + { + "name": "MSP 5110", + "title": "Introductory Topics in Media Studies & Production" + }, + { + "name": "MSP 5114", + "title": "Communication Research Methods" + }, + { + "name": "MSP 5246", + "title": "Social History Mass Comm" + }, + { + "name": "MSP 5310", + "title": "Introductory Topics in Media Studies & Production" + }, + { + "name": "MSP 5547", + "title": "MA Project Workshop" + }, + { + "name": "MSP 5551", + "title": "New Media Literacies" + }, + { + "name": "MSP 5655", + "title": "Communication in Media Organizations" + }, + { + "name": "MSP 5663", + "title": "Art and Business of Recording" + }, + { + "name": "MSP 5701", + "title": "Producing and Directing" + }, + { + "name": "MSP 5702", + "title": "MA Documentary Production and Studies" + }, + { + "name": "MSP 5788", + "title": "Television Production Workshop" + }, + { + "name": "MSP 5887", + "title": "Graduate Radio Practicum" + }, + { + "name": "MSP 8010", + "title": "Intermediate Topics in Media Studies and Production" + }, + { + "name": "MSP 8110", + "title": "Intermediate Topics in Media Studies and Production" + }, + { + "name": "MSP 8221", + "title": "History of Electronic Media" + }, + { + "name": "MSP 8252", + "title": "Law and Ethics of Digital Media" + }, + { + "name": "MSP 8254", + "title": "Public Information Media Campaigns" + }, + { + "name": "MSP 8275", + "title": "#ourmedia: Community, Activist, Citizens' and Radical Media" + }, + { + "name": "MSP 8441", + "title": "Media and Children" + }, + { + "name": "MSP 8446", + "title": "Psychological Processing of Media" + }, + { + "name": "MSP 8457", + "title": "Political Communication" + }, + { + "name": "MSP 8471", + "title": "Global Media" + }, + { + "name": "MSP 8473", + "title": "Information Society" + }, + { + "name": "MSP 8614", + "title": "Creating a Media Business" + }, + { + "name": "MSP 8641", + "title": "Broadcast and Cable Management" + }, + { + "name": "MSP 8657", + "title": "Current Issues in Media Management" + }, + { + "name": "MSP 8741", + "title": "Emergent Media Production" + }, + { + "name": "MSP 8985", + "title": "Teach in Higher Ed: Comm" + }, + { + "name": "MSP 9333", + "title": "Master Colloq/Comp Exam" + }, + { + "name": "MSP 9787", + "title": "Television Practicum" + }, + { + "name": "MSP 9841", + "title": "Seminar in Comm" + }, + { + "name": "MSP 9845", + "title": "Masters Colloquium" + }, + { + "name": "MSP 9983", + "title": "Directed Readings in Communication" + }, + { + "name": "MSP 9985", + "title": "Internship" + }, + { + "name": "MSP 9991", + "title": "Directed Projects in Communication" + }, + { + "name": "MSP 9996", + "title": "MA Thesis/Project" + }, + { + "name": "MSP E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MSP L000", + "title": "Elective LL" + }, + { + "name": "MSP T000", + "title": "Elective" + }, + { + "name": "MSP T001", + "title": "Elective" + }, + { + "name": "MSP T050", + "title": "Half MSP 2701" + }, + { + "name": "MSP T051", + "title": "Half MSP 2701" + }, + { + "name": "MSP U000", + "title": "Elective UL" + }, + { + "name": "MMC 8985", + "title": "Teaching in Higher Education: Communications" + }, + { + "name": "MMC 9001", + "title": "Communication Theory I" + }, + { + "name": "MMC 9002", + "title": "Researching Communication I" + }, + { + "name": "MMC 9003", + "title": "Doctoral Colloquium" + }, + { + "name": "MMC 9004", + "title": "Teaching Communication" + }, + { + "name": "MMC 9005", + "title": "Colloquium II" + }, + { + "name": "MMC 9087", + "title": "Cultural Analytics Practicum" + }, + { + "name": "MMC 9101", + "title": "Communication Theory II" + }, + { + "name": "MMC 9102", + "title": "Researching Communication II" + }, + { + "name": "MMC 9202", + "title": "Statistics II" + }, + { + "name": "MMC 9203", + "title": "Survey Design" + }, + { + "name": "MMC 9204", + "title": "Experimental Design" + }, + { + "name": "MMC 9205", + "title": "Content Analysis" + }, + { + "name": "MMC 9206", + "title": "Digital Qualitative Research Methods" + }, + { + "name": "MMC 9207", + "title": "Critical Textual Analysis" + }, + { + "name": "MMC 9208", + "title": "Historical Methods for Media and Communication Research" + }, + { + "name": "MMC 9209", + "title": "Media Ethnography" + }, + { + "name": "MMC 9503", + "title": "Advanced Quantitative Methods" + }, + { + "name": "MMC 9505", + "title": "Psychological Proc/Media" + }, + { + "name": "MMC 9525", + "title": "Communications Institutions" + }, + { + "name": "MMC 9605", + "title": "Visual Communication" + }, + { + "name": "MMC 9612", + "title": "Critical Analysis of Mass Media" + }, + { + "name": "MMC 9625", + "title": "Sem/Communication Abroad" + }, + { + "name": "MMC 9647", + "title": "Political Communication" + }, + { + "name": "MMC 9700", + "title": "Advanced Topic/MMC I" + }, + { + "name": "MMC 9707", + "title": "Social Influence" + }, + { + "name": "MMC 9709", + "title": "Media Globalization" + }, + { + "name": "MMC 9725", + "title": "Media, Identity and Representation" + }, + { + "name": "MMC 9735", + "title": "Emerging Media and Communication" + }, + { + "name": "MMC 9744", + "title": "Public Information Campaign" + }, + { + "name": "MMC 9748", + "title": "Media and Social Memory" + }, + { + "name": "MMC 9749", + "title": "Social Media Analytics" + }, + { + "name": "MMC 9882", + "title": "Directed Projects/Comm" + }, + { + "name": "MMC 9883", + "title": "Directed Readings/Comm" + }, + { + "name": "MMC 9946", + "title": "Theory and Research Seminar (STARSS)" + }, + { + "name": "MMC 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "MMC 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "MMC 9999", + "title": "Dissertation Research" + }, + { + "name": "MGRE 3109", + "title": "Cognitive Development in the Content Areas" + }, + { + "name": "MGRE 3111", + "title": "Applications of Learning Theory to Middle Grades Education" + }, + { + "name": "MGRE 3145", + "title": "Teaching and Learning Math in the Middle Grades" + }, + { + "name": "MGRE 3196", + "title": "Teaching and Learning Literacy in the Middle Grades" + }, + { + "name": "MGRE 3296", + "title": "Cultures, Communities, and Families" + }, + { + "name": "MGRE 4108", + "title": "Teaching and Learning Science in the Middle Grades" + }, + { + "name": "MGRE 4801", + "title": "Senior Seminar and Performance Assessment in Middle Grades Education" + }, + { + "name": "MGRE 4888", + "title": "Student Teaching in the Middle Grades" + }, + { + "name": "MGRE 5101", + "title": "Citizenship, Cultures, and Social Studies Education" + }, + { + "name": "MGRE 5102", + "title": "Reading and Writing in the Middle Grades" + }, + { + "name": "MGRE 5404", + "title": "Teaching Math in the Middle Grades" + }, + { + "name": "MGRE 5405", + "title": "Teaching Science in the Middle Grades" + }, + { + "name": "MGRE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MLSC 1001", + "title": "Introduction to Military Science I" + }, + { + "name": "MLSC 1002", + "title": "Introduction to Military Science II" + }, + { + "name": "MLSC 2001", + "title": "Small Unit Operations and Leadership I" + }, + { + "name": "MLSC 2002", + "title": "Small Unit Operations and Leadership II" + }, + { + "name": "MLSC 3001", + "title": "Applied Leadership and Management I" + }, + { + "name": "MLSC 3002", + "title": "Applied Leadership and Management II" + }, + { + "name": "MLSC 4001", + "title": "Advanced Leadership and Management I" + }, + { + "name": "MLSC 4002", + "title": "Advanced Leadership and Management II" + }, + { + "name": "MLSC 4003", + "title": "Leadership Lab" + }, + { + "name": "MLSC T000", + "title": "Elective" + }, + { + "name": "MUSC 1000", + "title": "Recital/Concert Credit" + }, + { + "name": "MUSC 1201", + "title": "Voice Concentration" + }, + { + "name": "MUSC 1202", + "title": "Voice Concentration" + }, + { + "name": "MUSC 1203", + "title": "Voice Major" + }, + { + "name": "MUSC 1204", + "title": "Voice Major" + }, + { + "name": "MUSC 1211", + "title": "Voice Class" + }, + { + "name": "MUSC 1212", + "title": "Voice Class" + }, + { + "name": "MUSC 1223", + "title": "Class Voice for Non-Majors I" + }, + { + "name": "MUSC 1224", + "title": "Class Voice for Non-Majors II" + }, + { + "name": "MUSC 1225", + "title": "English Diction" + }, + { + "name": "MUSC 1226", + "title": "German Diction" + }, + { + "name": "MUSC 1227", + "title": "Italian Diction" + }, + { + "name": "MUSC 1228", + "title": "French Diction" + }, + { + "name": "MUSC 1256", + "title": "Private Voice for Non-Music Majors" + }, + { + "name": "MUSC 1257", + "title": "Private Voice for Non-Music Majors" + }, + { + "name": "MUSC 1258", + "title": "Private Voice for Non-Music Majors" + }, + { + "name": "MUSC 1259", + "title": "Private Voice for Non-Music Majors" + }, + { + "name": "MUSC 1401", + "title": "Piano Concentration" + }, + { + "name": "MUSC 1402", + "title": "Piano Concentration" + }, + { + "name": "MUSC 1403", + "title": "Piano Major" + }, + { + "name": "MUSC 1404", + "title": "Piano Major" + }, + { + "name": "MUSC 1405", + "title": "Secondary Piano for Music Majors " + }, + { + "name": "MUSC 1406", + "title": "Secondary Piano for Music Majors" + }, + { + "name": "MUSC 1407", + "title": "Piano for Non-Music Majors I" + }, + { + "name": "MUSC 1408", + "title": "Piano for Non-Music Majors II" + }, + { + "name": "MUSC 1411", + "title": "Private Piano for Non-Music Majors" + }, + { + "name": "MUSC 1412", + "title": "Private Piano for Non-Music Majors" + }, + { + "name": "MUSC 1415", + "title": "Introduction to Piano Pedagogy" + }, + { + "name": "MUSC 1428", + "title": "Accompanying and Piano Ensemble" + }, + { + "name": "MUSC 1429", + "title": "Accompanying and Piano Ensemble" + }, + { + "name": "MUSC 1446", + "title": "Private Keyboard for Music Majors" + }, + { + "name": "MUSC 1447", + "title": "Private Keyboard for Music Majors" + }, + { + "name": "MUSC 1448", + "title": "Private Keyboard for Music Majors" + }, + { + "name": "MUSC 1449", + "title": "Private Keyboard for Music Majors" + }, + { + "name": "MUSC 1501", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 1502", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 1503", + "title": "Instrumental Major" + }, + { + "name": "MUSC 1504", + "title": "Instrumental Major" + }, + { + "name": "MUSC 1529", + "title": "Guitar for Non-Music Majors" + }, + { + "name": "MUSC 1531", + "title": "Guitar for Non-Music Majors II" + }, + { + "name": "MUSC 1603", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 1604", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 1764", + "title": "Popular Music and Social Change in the United States" + }, + { + "name": "MUSC 2123", + "title": "Class Voice for Non-Majors: Jazz" + }, + { + "name": "MUSC 2124", + "title": "Class Voice for Non-Majors: Jazz" + }, + { + "name": "MUSC 2133", + "title": "Class Guitar for Non-Majors: Jazz" + }, + { + "name": "MUSC 2134", + "title": "Class Guitar for Non-Majors: Jazz" + }, + { + "name": "MUSC 2143", + "title": "Class Piano for Non-Majors: Jazz" + }, + { + "name": "MUSC 2144", + "title": "Class Piano for Non-Majors: Jazz" + }, + { + "name": "MUSC 2201", + "title": "Voice Concentration" + }, + { + "name": "MUSC 2202", + "title": "Voice Concentration" + }, + { + "name": "MUSC 2203", + "title": "Voice Major" + }, + { + "name": "MUSC 2204", + "title": "Voice Major" + }, + { + "name": "MUSC 2211", + "title": "Voice Class" + }, + { + "name": "MUSC 2212", + "title": "Voice Class" + }, + { + "name": "MUSC 2323", + "title": "Basic Conducting" + }, + { + "name": "MUSC 2324", + "title": "Conducting Intermediate" + }, + { + "name": "MUSC 2401", + "title": "Piano Concentration" + }, + { + "name": "MUSC 2402", + "title": "Piano Concentration" + }, + { + "name": "MUSC 2403", + "title": "Piano Major" + }, + { + "name": "MUSC 2404", + "title": "Piano Major" + }, + { + "name": "MUSC 2405", + "title": "Secondary Piano for Music Majors" + }, + { + "name": "MUSC 2406", + "title": "Secondary Piano for Music Majors" + }, + { + "name": "MUSC 2407", + "title": "Piano for Non-Music Majors III" + }, + { + "name": "MUSC 2408", + "title": "Piano for Non-Music Majors IV" + }, + { + "name": "MUSC 2411", + "title": "Private Piano for Non-Music Majors" + }, + { + "name": "MUSC 2412", + "title": "Private Piano for Non-Music Majors" + }, + { + "name": "MUSC 2415", + "title": "Pedagogy of Technique " + }, + { + "name": "MUSC 2416", + "title": "Creative Activities for the Piano Teacher " + }, + { + "name": "MUSC 2500", + "title": "Collegiate Band Lesson" + }, + { + "name": "MUSC 2501", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 2502", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 2503", + "title": "Instrumental Major" + }, + { + "name": "MUSC 2504", + "title": "Instrumental Major" + }, + { + "name": "MUSC 2603", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 2604", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 3100", + "title": "Small Jazz Ensemble" + }, + { + "name": "MUSC 3110", + "title": "Large Jazz Ensemble" + }, + { + "name": "MUSC 3201", + "title": "Voice Concentration" + }, + { + "name": "MUSC 3202", + "title": "Voice Concentration" + }, + { + "name": "MUSC 3203", + "title": "Voice Major" + }, + { + "name": "MUSC 3204", + "title": "Voice Major" + }, + { + "name": "MUSC 3231", + "title": "Musical Theater Scene Study" + }, + { + "name": "MUSC 3232", + "title": "Musical Theater Voice & Acting" + }, + { + "name": "MUSC 3251", + "title": "Applied Lesson - Vocal" + }, + { + "name": "MUSC 3267", + "title": "Vocal Repertoire" + }, + { + "name": "MUSC 3268", + "title": "Vocal Repertoire" + }, + { + "name": "MUSC 3300", + "title": "Choral Ensemble" + }, + { + "name": "MUSC 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "MUSC 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "MUSC 3401", + "title": "Piano Concentration" + }, + { + "name": "MUSC 3402", + "title": "Piano Concentration" + }, + { + "name": "MUSC 3403", + "title": "Piano Major" + }, + { + "name": "MUSC 3404", + "title": "Piano Major" + }, + { + "name": "MUSC 3405", + "title": "Secondary Piano for Music Majors" + }, + { + "name": "MUSC 3406", + "title": "Secondary Piano for Music Majors" + }, + { + "name": "MUSC 3415", + "title": "Pedagogy of Children " + }, + { + "name": "MUSC 3416", + "title": "Pedagogy of the College Non-Music Major" + }, + { + "name": "MUSC 3421", + "title": "Suzuki for Pianists " + }, + { + "name": "MUSC 3422", + "title": "Keyboard Literature" + }, + { + "name": "MUSC 3423", + "title": "Keyboard Literature" + }, + { + "name": "MUSC 3443", + "title": "Listening & Learning Skills for Pianists I" + }, + { + "name": "MUSC 3444", + "title": "Listening & Learning Skills for Pianists II" + }, + { + "name": "MUSC 3451", + "title": "Applied Lesson - Keyboard" + }, + { + "name": "MUSC 3500", + "title": "Collegiate Band" + }, + { + "name": "MUSC 3501", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 3502", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 3503", + "title": "Instrumental Major" + }, + { + "name": "MUSC 3504", + "title": "Instrumental Major" + }, + { + "name": "MUSC 3510", + "title": "Marching Band" + }, + { + "name": "MUSC 3551", + "title": "Applied Lesson - Instrumental" + }, + { + "name": "MUSC 3561", + "title": "Multi-Percussion in Orchestra" + }, + { + "name": "MUSC 3571", + "title": "International Exchange Applied Instrumental Lesson" + }, + { + "name": "MUSC 3572", + "title": "International Exchange Applied Voice Lesson" + }, + { + "name": "MUSC 3573", + "title": "International Exchange Large Ensemble" + }, + { + "name": "MUSC 3574", + "title": "International Exchange Small Ensemble" + }, + { + "name": "MUSC 3579", + "title": "Orchestra Audition Prep" + }, + { + "name": "MUSC 3582", + "title": "Independent Study" + }, + { + "name": "MUSC 3603", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 3604", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 3611", + "title": "Harpsichord for Pianists" + }, + { + "name": "MUSC 4152", + "title": "Swing Owls Campus Community Jazz Band" + }, + { + "name": "MUSC 4201", + "title": "Voice Concentration" + }, + { + "name": "MUSC 4202", + "title": "Voice Concentration" + }, + { + "name": "MUSC 4203", + "title": "Voice Major" + }, + { + "name": "MUSC 4210", + "title": "Opera Ensemble" + }, + { + "name": "MUSC 4223", + "title": "Vocal Coaching" + }, + { + "name": "MUSC 4224", + "title": "Vocal Coaching" + }, + { + "name": "MUSC 4225", + "title": "Vocal Pedagogy" + }, + { + "name": "MUSC 4226", + "title": "Diction Skills" + }, + { + "name": "MUSC 4227", + "title": "Diction Skills" + }, + { + "name": "MUSC 4228", + "title": "Opera Workshop" + }, + { + "name": "MUSC 4229", + "title": "Opera Workshop" + }, + { + "name": "MUSC 4233", + "title": "Musical Theater: Dress Rehearsal" + }, + { + "name": "MUSC 4258", + "title": "Performing Musical Theater " + }, + { + "name": "MUSC 4284", + "title": "Voice Major" + }, + { + "name": "MUSC 4296", + "title": "Vocal Pedagogy" + }, + { + "name": "MUSC 4300", + "title": "Concert Choir" + }, + { + "name": "MUSC 4310", + "title": "Graduate Conductors Choir" + }, + { + "name": "MUSC 4323", + "title": "Conducting (Choral)" + }, + { + "name": "MUSC 4324", + "title": "Conducting (Instrumental)" + }, + { + "name": "MUSC 4352", + "title": "Singing Owls Campus/Community Choir" + }, + { + "name": "MUSC 4353", + "title": "Teaching Choral Music" + }, + { + "name": "MUSC 4401", + "title": "Piano Concentration" + }, + { + "name": "MUSC 4402", + "title": "Piano Concentration" + }, + { + "name": "MUSC 4403", + "title": "Piano Major" + }, + { + "name": "MUSC 4431", + "title": "Introduction to the Alexander Technique" + }, + { + "name": "MUSC 4484", + "title": "Piano Major" + }, + { + "name": "MUSC 4500", + "title": "Instrumental Ensemble" + }, + { + "name": "MUSC 4501", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 4502", + "title": "Instrumental Concentration" + }, + { + "name": "MUSC 4503", + "title": "Instrumental Major" + }, + { + "name": "MUSC 4510", + "title": "Instrumental Ensemble" + }, + { + "name": "MUSC 4520", + "title": "Ensemble" + }, + { + "name": "MUSC 4521", + "title": "Large Ensemble" + }, + { + "name": "MUSC 4539", + "title": "Instrumental Conducting Seminar: Score Analysis, Programming & Interpretation of Wind Ensemble Lit" + }, + { + "name": "MUSC 4541", + "title": "History of Wind & Brass Chamber Music" + }, + { + "name": "MUSC 4544", + "title": "Wind Repertory in History: European Antiquity through the 21st Century" + }, + { + "name": "MUSC 4552", + "title": "Samba Owls" + }, + { + "name": "MUSC 4556", + "title": "Afro-Cuban Percussion Techniques" + }, + { + "name": "MUSC 4560", + "title": "Seminar in Guitar Performance and Literature" + }, + { + "name": "MUSC 4561", + "title": "Percussion Pedagogy" + }, + { + "name": "MUSC 4563", + "title": "Upper String Pedagogy" + }, + { + "name": "MUSC 4567", + "title": "Viola for Violinists" + }, + { + "name": "MUSC 4570", + "title": "Orchestral Repertoire" + }, + { + "name": "MUSC 4584", + "title": "Instrumental Major" + }, + { + "name": "MUSC 4603", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 4652", + "title": "Owlchestra Campus Community String Orchestra" + }, + { + "name": "MUSC 4684", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 5000", + "title": "Recital Extension" + }, + { + "name": "MUSC 5152", + "title": "Swing Owls Campus Community Jazz Band" + }, + { + "name": "MUSC 5201", + "title": "Applied Vocal Graduate Minor" + }, + { + "name": "MUSC 5202", + "title": "Applied Vocal Graduate Minor" + }, + { + "name": "MUSC 5203", + "title": "Applied Vocal Graduate Minor" + }, + { + "name": "MUSC 5310", + "title": "Choral Ensemble" + }, + { + "name": "MUSC 5352", + "title": "Singing Owls Campus/Community Choir" + }, + { + "name": "MUSC 5401", + "title": "Applied Keyboard Graduate Minor" + }, + { + "name": "MUSC 5402", + "title": "Applied Keyboard Graduate Minor" + }, + { + "name": "MUSC 5403", + "title": "Applied Keyboard Graduate Minor" + }, + { + "name": "MUSC 5431", + "title": "Alexander Technique Introduction" + }, + { + "name": "MUSC 5501", + "title": "Applied Instrumental Graduate Minor" + }, + { + "name": "MUSC 5502", + "title": "Applied Instrumental Graduate Minor" + }, + { + "name": "MUSC 5503", + "title": "Applied Instrumental Graduate Minor" + }, + { + "name": "MUSC 5552", + "title": "Samba Owls" + }, + { + "name": "MUSC 5556", + "title": "Hand Percussion Techniques for Drummers, Dancers and Concert Percussionists" + }, + { + "name": "MUSC 5560", + "title": "Seminar in Guitar Performance and Literature" + }, + { + "name": "MUSC 5652", + "title": "Owlchestra Campus Community String Orchestra" + }, + { + "name": "MUSC 8000", + "title": "Continuing Registration Status" + }, + { + "name": "MUSC 8004", + "title": "Piano Major Concentration in Pedagogy" + }, + { + "name": "MUSC 8014", + "title": "Piano Major Concentration in Pedagogy" + }, + { + "name": "MUSC 8024", + "title": "Piano Major Concentration in Pedagogy" + }, + { + "name": "MUSC 8084", + "title": "Piano Major Concentration in Pedagogy (Recital)" + }, + { + "name": "MUSC 8180", + "title": "Special Topics in Percussion" + }, + { + "name": "MUSC 8204", + "title": "Voice Major" + }, + { + "name": "MUSC 8205", + "title": "Musical Theater Voice and Acting" + }, + { + "name": "MUSC 8206", + "title": "Musical Theater Scene Study" + }, + { + "name": "MUSC 8210", + "title": "Opera Ensemble" + }, + { + "name": "MUSC 8211", + "title": "Opera Coaching" + }, + { + "name": "MUSC 8212", + "title": "Coaching Skills" + }, + { + "name": "MUSC 8213", + "title": "Opera Diction" + }, + { + "name": "MUSC 8214", + "title": "Voice Major" + }, + { + "name": "MUSC 8215", + "title": "Vocal Coaching" + }, + { + "name": "MUSC 8216", + "title": "Aria Repertoire" + }, + { + "name": "MUSC 8220", + "title": "Opera Workshop" + }, + { + "name": "MUSC 8224", + "title": "Voice Major" + }, + { + "name": "MUSC 8231", + "title": "Opera Role Preparation" + }, + { + "name": "MUSC 8232", + "title": "Opera Role Preparation" + }, + { + "name": "MUSC 8233", + "title": "Vocal Coaching: Professional Studies" + }, + { + "name": "MUSC 8234", + "title": "Opera Major" + }, + { + "name": "MUSC 8235", + "title": "Opera Vocal Lessons" + }, + { + "name": "MUSC 8236", + "title": "Opera Vocal Lessons" + }, + { + "name": "MUSC 8244", + "title": "Opera Major" + }, + { + "name": "MUSC 8245", + "title": "Vocal Literature: Renaissance and Baroque" + }, + { + "name": "MUSC 8246", + "title": "Vocal Literature: Classical/Bel Canto" + }, + { + "name": "MUSC 8247", + "title": "Vocal Literature: German Romantic" + }, + { + "name": "MUSC 8248", + "title": "Vocal Literature: French Romantic" + }, + { + "name": "MUSC 8249", + "title": "Vocal Literature: Contemporary" + }, + { + "name": "MUSC 8254", + "title": "Opera Major" + }, + { + "name": "MUSC 8264", + "title": "Opera Major" + }, + { + "name": "MUSC 8274", + "title": "Opera Role Performance" + }, + { + "name": "MUSC 8284", + "title": "Voice Major-Recital" + }, + { + "name": "MUSC 8300", + "title": "Concert Choir" + }, + { + "name": "MUSC 8310", + "title": "Choral Ensemble" + }, + { + "name": "MUSC 8320", + "title": "Special Topics: Choral Music" + }, + { + "name": "MUSC 8351", + "title": "Choral Conducting Seminar I" + }, + { + "name": "MUSC 8352", + "title": "Choral Conducting Seminar II" + }, + { + "name": "MUSC 8353", + "title": "Choral Conducting Seminar III" + }, + { + "name": "MUSC 8354", + "title": "Choral Conducting Seminar IV" + }, + { + "name": "MUSC 8356", + "title": "Choral Literature: Early Period" + }, + { + "name": "MUSC 8357", + "title": "Choral Literature: Classic and Romantic Periods" + }, + { + "name": "MUSC 8358", + "title": "Choral Literature: Baroque Period" + }, + { + "name": "MUSC 8359", + "title": "Choral Literature: 1910 to the Present" + }, + { + "name": "MUSC 8384", + "title": "Private Lesson: Choral Conducting Major" + }, + { + "name": "MUSC 8404", + "title": "Piano Major" + }, + { + "name": "MUSC 8414", + "title": "Piano Major" + }, + { + "name": "MUSC 8416", + "title": "Piano for Accompanying and Chamber Music Majors" + }, + { + "name": "MUSC 8417", + "title": "Piano for Accompanying and Chamber Music Majors" + }, + { + "name": "MUSC 8418", + "title": "Piano for Accompanying and Chamber Music Majors" + }, + { + "name": "MUSC 8419", + "title": "Piano for Accompanying and Chamber Music Majors" + }, + { + "name": "MUSC 8424", + "title": "Piano Major" + }, + { + "name": "MUSC 8441", + "title": "Seminar in Early Keyboard Instruments I" + }, + { + "name": "MUSC 8442", + "title": "Seminar in Early Keyboard Instruments II" + }, + { + "name": "MUSC 8443", + "title": "Listening/Learning Skills: Piano I" + }, + { + "name": "MUSC 8444", + "title": "Listening/Learning Skills: Piano II" + }, + { + "name": "MUSC 8461", + "title": "Piano Pedagogy I" + }, + { + "name": "MUSC 8462", + "title": "Class Piano Pedagogy" + }, + { + "name": "MUSC 8463", + "title": "Class Piano Practice Teaching II" + }, + { + "name": "MUSC 8464", + "title": "Pedagogy of Technique" + }, + { + "name": "MUSC 8465", + "title": "Piano Pedagogy II" + }, + { + "name": "MUSC 8466", + "title": "Piano Pedagogy" + }, + { + "name": "MUSC 8467", + "title": "American Piano Pedagogy" + }, + { + "name": "MUSC 8471", + "title": "Recital Accompanying" + }, + { + "name": "MUSC 8472", + "title": "Recital Accompanying" + }, + { + "name": "MUSC 8473", + "title": "Recital Accompanying" + }, + { + "name": "MUSC 8474", + "title": "Recital Accompanying" + }, + { + "name": "MUSC 8475", + "title": "Studio Accompanying" + }, + { + "name": "MUSC 8476", + "title": "Suzuki for Pianists" + }, + { + "name": "MUSC 8477", + "title": "Baroque Keyboard Performance Practice" + }, + { + "name": "MUSC 8478", + "title": "Classical Keyboard Performance Practice" + }, + { + "name": "MUSC 8479", + "title": "Romantic Performance Practice: The Schumanns, Chopin, and Brahms" + }, + { + "name": "MUSC 8480", + "title": "Special Topics in Music" + }, + { + "name": "MUSC 8484", + "title": "Piano Major-Recital" + }, + { + "name": "MUSC 8500", + "title": "Instrumental Ensemble" + }, + { + "name": "MUSC 8504", + "title": "Instrumental Major" + }, + { + "name": "MUSC 8510", + "title": "Instrumental Ensemble" + }, + { + "name": "MUSC 8514", + "title": "Instrumental Major" + }, + { + "name": "MUSC 8520", + "title": "Wind Chamber Symphony" + }, + { + "name": "MUSC 8524", + "title": "Instrumental Major" + }, + { + "name": "MUSC 8535", + "title": "Private Lessons: Instrumental Conducting Major" + }, + { + "name": "MUSC 8536", + "title": "Private Lessons: Instrumental Conducting Major" + }, + { + "name": "MUSC 8537", + "title": "Private Lessons: Instrumental Conducting Major" + }, + { + "name": "MUSC 8538", + "title": "Private Lessons: Instrumental Conducting Major" + }, + { + "name": "MUSC 8539", + "title": "Instrumental Conducting Seminar: Score Analysis, Programming & Interpretation of Wind Ensemble Lit" + }, + { + "name": "MUSC 8541", + "title": "Advanced Orchestral Conducting I-II" + }, + { + "name": "MUSC 8544", + "title": "Wind Repertory in History: European Antiquity through the 21st Century" + }, + { + "name": "MUSC 8545", + "title": "History of Wind and Brass Chamber Music" + }, + { + "name": "MUSC 8546", + "title": "Viola for Violinists" + }, + { + "name": "MUSC 8551", + "title": "Percussion History, Development and Performance Practices" + }, + { + "name": "MUSC 8552", + "title": "Percussion Pedagogy" + }, + { + "name": "MUSC 8553", + "title": "Multi-Percussion in the Orchestra" + }, + { + "name": "MUSC 8554", + "title": "Orchestral Repertoire: Percussion" + }, + { + "name": "MUSC 8555", + "title": "Orchestral Repertoire" + }, + { + "name": "MUSC 8556", + "title": "Afro-Cuban Percussion Techniques" + }, + { + "name": "MUSC 8561", + "title": "Lower String Pedagogy" + }, + { + "name": "MUSC 8562", + "title": "Upper String Pedagogy" + }, + { + "name": "MUSC 8566", + "title": "String Major/Pedagogy" + }, + { + "name": "MUSC 8567", + "title": "String Major/Pedagogy" + }, + { + "name": "MUSC 8568", + "title": "String Major/Pedagogy" + }, + { + "name": "MUSC 8569", + "title": "String Major/Pedagogy" + }, + { + "name": "MUSC 8571", + "title": "Studio Ensemble Pedagogy I" + }, + { + "name": "MUSC 8579", + "title": "Orchestra Audition Prep" + }, + { + "name": "MUSC 8584", + "title": "Instrumental Major (Recital)" + }, + { + "name": "MUSC 8611", + "title": "Harpsichord for Pianists" + }, + { + "name": "MUSC 8904", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 8914", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 8924", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 8984", + "title": "Harpsichord Major" + }, + { + "name": "MUSC 9001", + "title": "Appl Music-Prof Studies" + }, + { + "name": "MUSC 9002", + "title": "Appl Music-Prof Studies" + }, + { + "name": "MUSC 9004", + "title": "Doctoral String Major" + }, + { + "name": "MUSC 9011", + "title": "Doctoral Chamber Music" + }, + { + "name": "MUSC 9012", + "title": "Doctoral Chamber Music" + }, + { + "name": "MUSC 9013", + "title": "Doctoral Chamber Music" + }, + { + "name": "MUSC 9014", + "title": "Doctoral String Major" + }, + { + "name": "MUSC 9021", + "title": "Chamber Music" + }, + { + "name": "MUSC 9024", + "title": "Doctoral String Major" + }, + { + "name": "MUSC 9034", + "title": "String Major Doctorate" + }, + { + "name": "MUSC 9101", + "title": "Professional Studies" + }, + { + "name": "MUSC 9102", + "title": "Professional Studies" + }, + { + "name": "MUSC 9104", + "title": "Historical Keyboard Instruments Major/Doctoral" + }, + { + "name": "MUSC 9114", + "title": "Historical Keyboard Instruments Major/Doctoral" + }, + { + "name": "MUSC 9124", + "title": "Historical Keyboard Instruments Major/Doctoral" + }, + { + "name": "MUSC 9134", + "title": "Historical Keyboard Instruments Major/Doctoral" + }, + { + "name": "MUSC 9182", + "title": "Independent Study" + }, + { + "name": "MUSC 9184", + "title": "DMA Solo Public Recital" + }, + { + "name": "MUSC 9204", + "title": "Voice Major/Doctoral" + }, + { + "name": "MUSC 9210", + "title": "Special Topics in Voice" + }, + { + "name": "MUSC 9214", + "title": "Voice Major/Doctoral" + }, + { + "name": "MUSC 9220", + "title": "Special Topics in Voice" + }, + { + "name": "MUSC 9224", + "title": "Voice Major/Doctoral" + }, + { + "name": "MUSC 9230", + "title": "Special Topics in Voice" + }, + { + "name": "MUSC 9234", + "title": "Voice Major Doctorate" + }, + { + "name": "MUSC 9240", + "title": "Special Topics in Voice" + }, + { + "name": "MUSC 9250", + "title": "Special Topics in Vocal Pedagogy" + }, + { + "name": "MUSC 9251", + "title": "Voice Pedagogy" + }, + { + "name": "MUSC 9261", + "title": "Vocal Pedagogy I" + }, + { + "name": "MUSC 9262", + "title": "Vocal Pedagogy II" + }, + { + "name": "MUSC 9263", + "title": "Advanced Vocal Pedagogy" + }, + { + "name": "MUSC 9282", + "title": "Independent Study" + }, + { + "name": "MUSC 9351", + "title": "Performance Traditions" + }, + { + "name": "MUSC 9384", + "title": "DMA Chamber Recital" + }, + { + "name": "MUSC 9404", + "title": "Piano Major/Doctoral" + }, + { + "name": "MUSC 9414", + "title": "Piano Major/Doctoral" + }, + { + "name": "MUSC 9424", + "title": "Piano Major/Doctoral" + }, + { + "name": "MUSC 9434", + "title": "Piano Major Doctorate" + }, + { + "name": "MUSC 9451", + "title": "Keyboard Literature-Doctoral" + }, + { + "name": "MUSC 9452", + "title": "Keyboard Literature-Doctoral" + }, + { + "name": "MUSC 9453", + "title": "Keyboard Literature-Doctoral" + }, + { + "name": "MUSC 9454", + "title": "Keyboard Literature-Doctoral" + }, + { + "name": "MUSC 9461", + "title": "Piano Pedagogy" + }, + { + "name": "MUSC 9504", + "title": "Doctoral Instrumental Major" + }, + { + "name": "MUSC 9514", + "title": "Doctoral Instrumental Major" + }, + { + "name": "MUSC 9515", + "title": "Technical and Interpretive Seminar-Strings" + }, + { + "name": "MUSC 9516", + "title": "Seminar for String Literature" + }, + { + "name": "MUSC 9517", + "title": "Advanced Conducting-Doctoral" + }, + { + "name": "MUSC 9524", + "title": "Doctoral Instrumental Major" + }, + { + "name": "MUSC 9534", + "title": "Doctoral Instrumental Major" + }, + { + "name": "MUSC 9561", + "title": "Single Reed Woodwind Ped" + }, + { + "name": "MUSC 9562", + "title": "Double Reed Woodwind Pedagogy" + }, + { + "name": "MUSC 9563", + "title": "Upper String Pedagogy" + }, + { + "name": "MUSC 9564", + "title": "Flute Pedagogy" + }, + { + "name": "MUSC 9565", + "title": "Lower Brass Pedagogy" + }, + { + "name": "MUSC 9566", + "title": "Upper Brass Pedagogy" + }, + { + "name": "MUSC 9567", + "title": "Lower String Pedagogy" + }, + { + "name": "MUSC 9587", + "title": "Practicum: String Pedagogy" + }, + { + "name": "MUSC 9684", + "title": "DMA Lecture-Recital" + }, + { + "name": "MUSC 9701", + "title": "Doct Perf Practice I" + }, + { + "name": "MUSC 9702", + "title": "Doct Perf Practice II" + }, + { + "name": "MUSC 9784", + "title": "DMA Performance with Orchestra" + }, + { + "name": "MUSC 9884", + "title": "DMA Major Opera Role" + }, + { + "name": "MUSC 9984", + "title": "DMA Final Recital" + }, + { + "name": "MUSC 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "MUSC 9995", + "title": "Final Project in Music" + }, + { + "name": "MUSC 9996", + "title": "Final Project: String Pedagogy" + }, + { + "name": "MUSC 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "MUSC 9999", + "title": "Monograph Research" + }, + { + "name": "MUSC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MUSC F000", + "title": "* See Statement Below" + }, + { + "name": "MUSC T000", + "title": "Elective" + }, + { + "name": "MUED 1651", + "title": "Percussion" + }, + { + "name": "MUED 1652", + "title": "Woodwinds I" + }, + { + "name": "MUED 1653", + "title": "Upper Strings" + }, + { + "name": "MUED 1654", + "title": "Lower Strings" + }, + { + "name": "MUED 1655", + "title": "Brass I" + }, + { + "name": "MUED 1656", + "title": "Brass II" + }, + { + "name": "MUED 1657", + "title": "Woodwinds II" + }, + { + "name": "MUED 1658", + "title": "Guitar I" + }, + { + "name": "MUED 1659", + "title": "Guitar II" + }, + { + "name": "MUED 1671", + "title": "Collaboration & Creativity in the New Music Community" + }, + { + "name": "MUED 2665", + "title": "Music Learning & Development" + }, + { + "name": "MUED 2671", + "title": "School Choral Ensembles" + }, + { + "name": "MUED 2672", + "title": "Diction Using Choral Repertoire" + }, + { + "name": "MUED 2673", + "title": "Jazz Education - Instrumental" + }, + { + "name": "MUED 2674", + "title": "Jazz Education - Vocal" + }, + { + "name": "MUED 2675", + "title": "Inclusive Vocal Development: Pre-Kindergarten - Secondary" + }, + { + "name": "MUED 2696", + "title": "Teaching General Music to Inclusive Populations (TGMIP)" + }, + { + "name": "MUED 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "MUED 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "MUED 3631", + "title": "Functional Voice I" + }, + { + "name": "MUED 3632", + "title": "Functional Voice II" + }, + { + "name": "MUED 3633", + "title": "Functional Piano I" + }, + { + "name": "MUED 3634", + "title": "Functional Piano II" + }, + { + "name": "MUED 3635", + "title": "Functional Guitar I" + }, + { + "name": "MUED 3636", + "title": "Functional Guitar II" + }, + { + "name": "MUED 3651", + "title": "Music Education Lab Ensemble" + }, + { + "name": "MUED 3661", + "title": "Introduction to Teaching Students with Special Needs" + }, + { + "name": "MUED 3662", + "title": "Keyboard Harmony - Music Education" + }, + { + "name": "MUED 3680", + "title": "Music Therapy: Special Topics" + }, + { + "name": "MUED 3689", + "title": "Fieldwork in Music Therapy" + }, + { + "name": "MUED 3789", + "title": "Fieldwork in Music Therapy II" + }, + { + "name": "MUED 3889", + "title": "Fieldwork in Music Therapy III" + }, + { + "name": "MUED 4611", + "title": "Music Therapy Overview" + }, + { + "name": "MUED 4613", + "title": "Music Therapy Foundations" + }, + { + "name": "MUED 4614", + "title": "Psychiatric Music Therapy" + }, + { + "name": "MUED 4615", + "title": "Rehabilitative Music Therapy " + }, + { + "name": "MUED 4616", + "title": "Developmental Music Therapy" + }, + { + "name": "MUED 4617", + "title": "Medical Music Therapy" + }, + { + "name": "MUED 4618", + "title": "Music Therapy Ethics" + }, + { + "name": "MUED 4619", + "title": "Medical/Rehabilitative Music Therapy" + }, + { + "name": "MUED 4641", + "title": "Music Therapy Experiences I: Creative Methods" + }, + { + "name": "MUED 4642", + "title": "Music Therapy Experiences II: Recreative Methods" + }, + { + "name": "MUED 4643", + "title": "Music Therapy Experiences III: Receptive Methods" + }, + { + "name": "MUED 4646", + "title": "Music Therapy Research" + }, + { + "name": "MUED 4650", + "title": "Contemporary Problems in Music Education" + }, + { + "name": "MUED 4652", + "title": "Night Owls Campus/Community Band" + }, + { + "name": "MUED 4661", + "title": "Curricular Options in Secondary School Music" + }, + { + "name": "MUED 4663", + "title": "Interactive Multimedia I " + }, + { + "name": "MUED 4664", + "title": "Interactive Multimedia II" + }, + { + "name": "MUED 4666", + "title": "Assessment of Music Learning" + }, + { + "name": "MUED 4667", + "title": "Teaching Instrumental Music to Inclusive Populations" + }, + { + "name": "MUED 4668", + "title": "Senior Student Teaching Seminar" + }, + { + "name": "MUED 4669", + "title": "Teaching Choral Music to Inclusive Populations" + }, + { + "name": "MUED 4670", + "title": "Special Problems in Music Education" + }, + { + "name": "MUED 4680", + "title": "Music Therapy: Special Topics" + }, + { + "name": "MUED 4685", + "title": "Music Therapy Clinical Internship" + }, + { + "name": "MUED 4689", + "title": "Student Teaching-Elementary" + }, + { + "name": "MUED 4696", + "title": "Music Therapy Research " + }, + { + "name": "MUED 4697", + "title": "Music Therapy Foundations" + }, + { + "name": "MUED 4789", + "title": "Student Teaching - Secondary" + }, + { + "name": "MUED 5551", + "title": "Percussion" + }, + { + "name": "MUED 5552", + "title": "Woodwinds I" + }, + { + "name": "MUED 5553", + "title": "Upper Strings" + }, + { + "name": "MUED 5554", + "title": "Lower Strings" + }, + { + "name": "MUED 5555", + "title": "Brass I" + }, + { + "name": "MUED 5556", + "title": "Brass II" + }, + { + "name": "MUED 5557", + "title": "Woodwinds II" + }, + { + "name": "MUED 5558", + "title": "Guitar I" + }, + { + "name": "MUED 5559", + "title": "Guitar II" + }, + { + "name": "MUED 5649", + "title": "Of Sound Mind and Body: Musical and Nonmusical Strategies for Optimal Resiliency and Wellness" + }, + { + "name": "MUED 5650", + "title": "Contemporary Problems in Music Education: Individual Study" + }, + { + "name": "MUED 5651", + "title": "Performance Anxiety" + }, + { + "name": "MUED 5652", + "title": "Night Owls Campus/Community Band" + }, + { + "name": "MUED 5653", + "title": "Effective Arts Education Environments: Managing the Classroom" + }, + { + "name": "MUED 5661", + "title": "Teaching Students with Special Needs" + }, + { + "name": "MUED 5665", + "title": "Music Learning and Development" + }, + { + "name": "MUED 5667", + "title": "Teaching Instrumental Music to Inclusive Populations (TIMIP)" + }, + { + "name": "MUED 5668", + "title": "Student Teaching Seminar" + }, + { + "name": "MUED 5669", + "title": "Teaching Choral Music to Inclusive Populations (TCMIP)" + }, + { + "name": "MUED 5673", + "title": "Jazz Education - Instrumental" + }, + { + "name": "MUED 5674", + "title": "Jazz Education - Vocal" + }, + { + "name": "MUED 5676", + "title": "Audiation and Music Learning" + }, + { + "name": "MUED 5677", + "title": "Music Learning Theory in Context: Early Childhood, Instrumental, and General Music Applications" + }, + { + "name": "MUED 5689", + "title": "Student Teaching - Elementary" + }, + { + "name": "MUED 5696", + "title": "Teaching General Music to Inclusive Populations (TGMIP)" + }, + { + "name": "MUED 5712", + "title": "MT Experiences II Recreative Methods" + }, + { + "name": "MUED 5789", + "title": "Student Teaching - Secondary" + }, + { + "name": "MUED 8325", + "title": "Apprenticeship in Music Therapy Education and Supervision II" + }, + { + "name": "MUED 8425", + "title": "Apprenticeship in Music Therapy Education and Supervision III" + }, + { + "name": "MUED 8525", + "title": "Apprenticeship in Music Therapy Education and Supervision IV" + }, + { + "name": "MUED 8566", + "title": "Qualitative Res: Mus Ed" + }, + { + "name": "MUED 8601", + "title": "Qualitative Research in Music Therapy" + }, + { + "name": "MUED 8602", + "title": "Quantitative Research in Music Therapy" + }, + { + "name": "MUED 8603", + "title": "Theories of Music Psychotherapy" + }, + { + "name": "MUED 8611", + "title": "Music Therapy Research" + }, + { + "name": "MUED 8612", + "title": "Music Therapy Foundation" + }, + { + "name": "MUED 8613", + "title": "Songs in Psychotherapy" + }, + { + "name": "MUED 8614", + "title": "Guided Imagery and Music I" + }, + { + "name": "MUED 8615", + "title": "Adv Mus Thrpy Clin Trng" + }, + { + "name": "MUED 8616", + "title": "MT Foundations" + }, + { + "name": "MUED 8617", + "title": "Multicultural Music Therapy" + }, + { + "name": "MUED 8618", + "title": "Music in Medicine" + }, + { + "name": "MUED 8619", + "title": "Music Therapy Education and Training" + }, + { + "name": "MUED 8621", + "title": "Music Therapy Ethics" + }, + { + "name": "MUED 8622", + "title": "Res Mus Psychotherapy" + }, + { + "name": "MUED 8623", + "title": "Research in Music Psychotherapy" + }, + { + "name": "MUED 8624", + "title": "Research in Music Medicine" + }, + { + "name": "MUED 8625", + "title": "Apprenticeship in Music Therapy Education and Supervision" + }, + { + "name": "MUED 8626", + "title": "Models of Clinical Supervision in Music Therapy" + }, + { + "name": "MUED 8627", + "title": "Apprentice MT Ed/Slp II" + }, + { + "name": "MUED 8650", + "title": "Special Topics in Music Education" + }, + { + "name": "MUED 8651", + "title": "Psych Music Lrn & Behav" + }, + { + "name": "MUED 8652", + "title": "Measurement and Evaluation in Music" + }, + { + "name": "MUED 8653", + "title": "Learning Theory in Music" + }, + { + "name": "MUED 8654", + "title": "Adv Methods Instrum MUED" + }, + { + "name": "MUED 8655", + "title": "Quantitative Res: Mus Ed" + }, + { + "name": "MUED 8656", + "title": "Academic Writing Skills" + }, + { + "name": "MUED 8657", + "title": "Create/Devel a Rock Band" + }, + { + "name": "MUED 8658", + "title": "Res 21st C Prac Gen Mus" + }, + { + "name": "MUED 8659", + "title": "Select/Rehearse Band Lit" + }, + { + "name": "MUED 8660", + "title": "Music Education in a New Key" + }, + { + "name": "MUED 8661", + "title": "Research in Music Education" + }, + { + "name": "MUED 8662", + "title": "Informal Music Learning" + }, + { + "name": "MUED 8663", + "title": "Interactive Multimedia I" + }, + { + "name": "MUED 8664", + "title": "Interactiv Multimedia II" + }, + { + "name": "MUED 8665", + "title": "Jazz Instrumental Education" + }, + { + "name": "MUED 8666", + "title": "Qualitative Res: Mus Ed" + }, + { + "name": "MUED 8667", + "title": "Music and the Mind: Understanding Music Perception and Cognition" + }, + { + "name": "MUED 8668", + "title": "History and Philosophy of Music Education" + }, + { + "name": "MUED 8670", + "title": "Special Topics: Instrumental Music Education" + }, + { + "name": "MUED 8671", + "title": "Sociology of Music Education" + }, + { + "name": "MUED 8672", + "title": "Supervsed Univ Music Tch" + }, + { + "name": "MUED 8673", + "title": "Music Tch in Higher Educ" + }, + { + "name": "MUED 8674", + "title": "Sem Grad Music Education" + }, + { + "name": "MUED 8675", + "title": "Choral Pedagogy Seminar" + }, + { + "name": "MUED 8676", + "title": "Seminar in Secondary School Music Teaching" + }, + { + "name": "MUED 8677", + "title": "Seminar in Elementary School Music Teaching" + }, + { + "name": "MUED 8680", + "title": "Contemporary Problems in Music Education: Individual Study" + }, + { + "name": "MUED 8690", + "title": "Contemporary Problems in Music Education: Individual Study" + }, + { + "name": "MUED 8691", + "title": "Research Seminar in Music Education" + }, + { + "name": "MUED 8725", + "title": "Apprenticeship in Music Therapy Education and Supervision V" + }, + { + "name": "MUED 8825", + "title": "Apprenticeship in Music Therapy Education and Supervision VI" + }, + { + "name": "MUED 9601", + "title": "Basic Sk: Comm/Dig Media" + }, + { + "name": "MUED 9611", + "title": "Theory Development in Music Therapy" + }, + { + "name": "MUED 9641", + "title": "Music Therapy Doctoral Seminar" + }, + { + "name": "MUED 9642", + "title": "Music Therapy Research Apprenticeship" + }, + { + "name": "MUED 9643", + "title": "Music Therapy Research Apprenticeship" + }, + { + "name": "MUED 9660", + "title": "Advanced Topics in Music Psychotherapy" + }, + { + "name": "MUED 9670", + "title": "Advanced Topics in Music Medicine" + }, + { + "name": "MUED 9680", + "title": "Music Therapy: Special Topics" + }, + { + "name": "MUED 9687", + "title": "Advanced Music Therapy Practicum" + }, + { + "name": "MUED 9690", + "title": "Music Therapy: Special Topics" + }, + { + "name": "MUED 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "MUED 9995", + "title": "Master's Final Project" + }, + { + "name": "MUED 9996", + "title": "Master's Thesis Music Education" + }, + { + "name": "MUED 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "MUED 9999", + "title": "Doctoral Dissertation" + }, + { + "name": "MUED E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MUST 0802", + "title": "The Art of Listening" + }, + { + "name": "MUST 0804", + "title": "Shakespeare and Music" + }, + { + "name": "MUST 0809", + "title": "World Musics & Cultures" + }, + { + "name": "MUST 0812", + "title": "Exploring Music" + }, + { + "name": "MUST 0902", + "title": "Honors: The Art of Listening" + }, + { + "name": "MUST 0909", + "title": "Honors World Musics & Cultures" + }, + { + "name": "MUST 1045", + "title": "Introduction to Music Theory and Literature " + }, + { + "name": "MUST 1106", + "title": "Jazz Secondary Piano" + }, + { + "name": "MUST 1118", + "title": "Business of Music I" + }, + { + "name": "MUST 1131", + "title": "Aural Skills I Jazz-Comm" + }, + { + "name": "MUST 1132", + "title": "Aural Skills II Jazz" + }, + { + "name": "MUST 1133", + "title": "Harmony I: Jazz" + }, + { + "name": "MUST 1134", + "title": "Harmony II: Jazz" + }, + { + "name": "MUST 1701", + "title": "Music Theory for Non-Music Majors" + }, + { + "name": "MUST 1702", + "title": "Introduction to Music" + }, + { + "name": "MUST 1703", + "title": "Introduction to World Music" + }, + { + "name": "MUST 1704", + "title": "Music in American Society" + }, + { + "name": "MUST 1705", + "title": "Music Theory for Non-Music Majors II" + }, + { + "name": "MUST 1711", + "title": "Theory I" + }, + { + "name": "MUST 1712", + "title": "Theory II" + }, + { + "name": "MUST 1741", + "title": "Aural Theory I" + }, + { + "name": "MUST 1742", + "title": "Aural Theory II" + }, + { + "name": "MUST 1758", + "title": "Composition Lesson I" + }, + { + "name": "MUST 1759", + "title": "Composition Lesson II" + }, + { + "name": "MUST 1761", + "title": "Introduction to Music" + }, + { + "name": "MUST 1762", + "title": "Music in Movie Epics" + }, + { + "name": "MUST 1763", + "title": "American Popular Music" + }, + { + "name": "MUST 1912", + "title": "Honors Theory II" + }, + { + "name": "MUST 1961", + "title": "Honors Introduction to Music" + }, + { + "name": "MUST 2105", + "title": "Jazz Secondary Piano" + }, + { + "name": "MUST 2106", + "title": "Jazz Secondary Piano" + }, + { + "name": "MUST 2111", + "title": "Music in Advertising and Marketing" + }, + { + "name": "MUST 2112", + "title": "Pop Song Writing" + }, + { + "name": "MUST 2113", + "title": "History of Pop " + }, + { + "name": "MUST 2114", + "title": "History of Jazz" + }, + { + "name": "MUST 2131", + "title": "Aural Skills III: Jazz" + }, + { + "name": "MUST 2133", + "title": "Harmony III: Jazz" + }, + { + "name": "MUST 2703", + "title": "Music in History" + }, + { + "name": "MUST 2704", + "title": "Music in History" + }, + { + "name": "MUST 2711", + "title": "Theory III" + }, + { + "name": "MUST 2712", + "title": "Theory IV" + }, + { + "name": "MUST 2733", + "title": "American Musical Theater" + }, + { + "name": "MUST 2741", + "title": "Aural Theory III" + }, + { + "name": "MUST 2742", + "title": "Aural Theory IV" + }, + { + "name": "MUST 2748", + "title": "Composition I" + }, + { + "name": "MUST 2749", + "title": "Composition II" + }, + { + "name": "MUST 2758", + "title": "Composition Lesson III" + }, + { + "name": "MUST 2759", + "title": "Composition Lesson IV" + }, + { + "name": "MUST 2900", + "title": "Honors Music Studies Special Topics" + }, + { + "name": "MUST 2962", + "title": "Honors History of American Popular Music" + }, + { + "name": "MUST 3105", + "title": "Jazz Class Piano" + }, + { + "name": "MUST 3106", + "title": "Jazz Class Piano" + }, + { + "name": "MUST 3196", + "title": "History of Pop" + }, + { + "name": "MUST 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "MUST 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "MUST 3696", + "title": "Music in History" + }, + { + "name": "MUST 3710", + "title": "Theory Seminar" + }, + { + "name": "MUST 3713", + "title": "Orchestration" + }, + { + "name": "MUST 3714", + "title": "Contemporary Music" + }, + { + "name": "MUST 3741", + "title": "Keyboard Harmony" + }, + { + "name": "MUST 3748", + "title": "Composition Junior Seminar I" + }, + { + "name": "MUST 3749", + "title": "Composition Junior Seminar II" + }, + { + "name": "MUST 3758", + "title": "Composition Lesson V" + }, + { + "name": "MUST 3759", + "title": "Composition Lesson VI" + }, + { + "name": "MUST 3763", + "title": "Analog and Modular Sound Synthesis" + }, + { + "name": "MUST 3764", + "title": "Scoring for Film and Digital Media" + }, + { + "name": "MUST 3765", + "title": "Scoring and Audio Design for Video Games" + }, + { + "name": "MUST 3770", + "title": "Topics in Music Theory" + }, + { + "name": "MUST 3780", + "title": "Topics in Music History" + }, + { + "name": "MUST 3796", + "title": "Music in History" + }, + { + "name": "MUST 3896", + "title": "Theory Seminar II" + }, + { + "name": "MUST 3900", + "title": "Honors Music Studies Special Topics" + }, + { + "name": "MUST 4110", + "title": "Seminar in Jazz Composition and Arranging" + }, + { + "name": "MUST 4111", + "title": "Jazz Style and Analysis" + }, + { + "name": "MUST 4112", + "title": "Jazz Arranging I" + }, + { + "name": "MUST 4113", + "title": "Jazz Improvisation: Theory and Practice I" + }, + { + "name": "MUST 4114", + "title": "Jazz Improvisation: Theory and Practice II" + }, + { + "name": "MUST 4115", + "title": "Jazz Arranging II" + }, + { + "name": "MUST 4120", + "title": "Seminar in Advanced Jazz Composition and Arranging " + }, + { + "name": "MUST 4700", + "title": "Latin Amer Mus Ensemble" + }, + { + "name": "MUST 4710", + "title": "Early Music Ensemble" + }, + { + "name": "MUST 4711", + "title": "Computers in Musical Applications" + }, + { + "name": "MUST 4712", + "title": "Computer Synthesis of Music" + }, + { + "name": "MUST 4713", + "title": "Sound Recording" + }, + { + "name": "MUST 4714", + "title": "Sound Editing" + }, + { + "name": "MUST 4715", + "title": "World Music" + }, + { + "name": "MUST 4716", + "title": "Composing Music for Films" + }, + { + "name": "MUST 4717", + "title": "Counterpoint" + }, + { + "name": "MUST 4718", + "title": "Analysis" + }, + { + "name": "MUST 4719", + "title": "MIDI" + }, + { + "name": "MUST 4720", + "title": "New Music Seminar" + }, + { + "name": "MUST 4721", + "title": "Computer Music Studio" + }, + { + "name": "MUST 4722", + "title": "Advanced Orchestration " + }, + { + "name": "MUST 4723", + "title": "Score Reading" + }, + { + "name": "MUST 4724", + "title": "Printing Music Scores and Parts" + }, + { + "name": "MUST 4725", + "title": "Advanced Audio Production" + }, + { + "name": "MUST 4727", + "title": "Electronic Music Composition: Practice, History, Theory" + }, + { + "name": "MUST 4731", + "title": "Arts Enterprise" + }, + { + "name": "MUST 4748", + "title": "Composition Senior Seminar I" + }, + { + "name": "MUST 4749", + "title": "Composition Senior Seminar II" + }, + { + "name": "MUST 4758", + "title": "Composition Lesson VII" + }, + { + "name": "MUST 4759", + "title": "Composition Lesson VIII" + }, + { + "name": "MUST 4762", + "title": "Music Technology" + }, + { + "name": "MUST 4780", + "title": "Special Topics Music Studies" + }, + { + "name": "MUST 4782", + "title": "Independent Study" + }, + { + "name": "MUST 4785", + "title": "Music Industry Internship" + }, + { + "name": "MUST 4786", + "title": "Music Industry Internship" + }, + { + "name": "MUST 4882", + "title": "Project in Music Technology" + }, + { + "name": "MUST 5001", + "title": "Diatonic Harm. Review" + }, + { + "name": "MUST 5002", + "title": "Chromatic Harm. Review" + }, + { + "name": "MUST 5003", + "title": "Counterpoint Review" + }, + { + "name": "MUST 5004", + "title": "Grad Aural Theory Review" + }, + { + "name": "MUST 5005", + "title": "Remedial Studies in Music History" + }, + { + "name": "MUST 5105", + "title": "Remedial Studies in Jazz History" + }, + { + "name": "MUST 5106", + "title": "Remedial Studies in Jazz Theory" + }, + { + "name": "MUST 5111", + "title": "Seminar in Jazz History" + }, + { + "name": "MUST 5115", + "title": "Seminar in Jazz Arranging" + }, + { + "name": "MUST 5701", + "title": "Research in Music" + }, + { + "name": "MUST 5704", + "title": "Music in History" + }, + { + "name": "MUST 5705", + "title": "Music in History" + }, + { + "name": "MUST 5713", + "title": "Canon and Fugue" + }, + { + "name": "MUST 5716", + "title": "Composing Music for Films" + }, + { + "name": "MUST 5719", + "title": "MIDI" + }, + { + "name": "MUST 5720", + "title": "New Music Seminar" + }, + { + "name": "MUST 5721", + "title": "Computer Music Studio" + }, + { + "name": "MUST 5724", + "title": "Printing Musical Scores and Parts" + }, + { + "name": "MUST 5725", + "title": "Computers in Music Applications" + }, + { + "name": "MUST 5726", + "title": "Computer Synthesis" + }, + { + "name": "MUST 5728", + "title": "Advanced Audio Production" + }, + { + "name": "MUST 5740", + "title": "Seminar in Composition" + }, + { + "name": "MUST 5741", + "title": "Analytical Techniques" + }, + { + "name": "MUST 5742", + "title": "Seminar in Theoretical Analysis" + }, + { + "name": "MUST 5743", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 5744", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 5745", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 5746", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 5749", + "title": "Current Topics in Musicology and Theory" + }, + { + "name": "MUST 5754", + "title": "Music in the Classical Period" + }, + { + "name": "MUST 5755", + "title": "Music in the Romantic Period" + }, + { + "name": "MUST 5756", + "title": "Music in the Twentieth Century 1900-1945" + }, + { + "name": "MUST 5762", + "title": "Music Technology" + }, + { + "name": "MUST 5763", + "title": "Analog and Modular Sound Synthesis" + }, + { + "name": "MUST 5764", + "title": "Scoring for Film and Digital Media" + }, + { + "name": "MUST 5765", + "title": "Scoring and Audio Design for Video Games" + }, + { + "name": "MUST 5773", + "title": "Digital Signal Processing for Music" + }, + { + "name": "MUST 5774", + "title": "Hearing Music: Acoustics and Psychoacoustics of Music" + }, + { + "name": "MUST 5775", + "title": "Seminar in Audio Software Design" + }, + { + "name": "MUST 5776", + "title": "Seminar in Physical Computing and Electronic Instrument Design" + }, + { + "name": "MUST 8100", + "title": "Jazz Ensemble" + }, + { + "name": "MUST 8104", + "title": "Jazz Major" + }, + { + "name": "MUST 8110", + "title": "Jazz Ensemble II" + }, + { + "name": "MUST 8111", + "title": "Seminar in Jazz History" + }, + { + "name": "MUST 8112", + "title": "Seminar in Jazz Improvisation" + }, + { + "name": "MUST 8113", + "title": "Seminar in Jazz Composition" + }, + { + "name": "MUST 8114", + "title": "Jazz Major" + }, + { + "name": "MUST 8115", + "title": "Seminar in Jazz Arranging" + }, + { + "name": "MUST 8120", + "title": "Special Topics in Jazz History" + }, + { + "name": "MUST 8124", + "title": "Jazz Major" + }, + { + "name": "MUST 8130", + "title": "Special Topics in Jazz Theory" + }, + { + "name": "MUST 8140", + "title": "Special Topics in Jazz Improvisation" + }, + { + "name": "MUST 8150", + "title": "Special Topics in Jazz Composition" + }, + { + "name": "MUST 8160", + "title": "Special Topics in Jazz Pedagogy" + }, + { + "name": "MUST 8170", + "title": "Special Topics in the Business of Music" + }, + { + "name": "MUST 8180", + "title": "Special Topics in Music" + }, + { + "name": "MUST 8184", + "title": "Jazz Major (Recital)" + }, + { + "name": "MUST 8220", + "title": "Special Topics in Jazz Voice" + }, + { + "name": "MUST 8230", + "title": "Special Topics in the American Songbook" + }, + { + "name": "MUST 8480", + "title": "Special Topics in Music" + }, + { + "name": "MUST 8602", + "title": "Intro to Ethnomusicology" + }, + { + "name": "MUST 8700", + "title": "Latin American Ensemble" + }, + { + "name": "MUST 8701", + "title": "Research in Music" + }, + { + "name": "MUST 8702", + "title": "Introduction to Ethnomusicology" + }, + { + "name": "MUST 8703", + "title": "Studies in Ethnomusicology" + }, + { + "name": "MUST 8704", + "title": "Music in History" + }, + { + "name": "MUST 8705", + "title": "Music in History" + }, + { + "name": "MUST 8708", + "title": "History of Opera" + }, + { + "name": "MUST 8709", + "title": "History of Opera" + }, + { + "name": "MUST 8710", + "title": "Early Music Ensemble" + }, + { + "name": "MUST 8713", + "title": "Canon and Fugue" + }, + { + "name": "MUST 8714", + "title": "Contemporary Music" + }, + { + "name": "MUST 8715", + "title": "Composition" + }, + { + "name": "MUST 8716", + "title": "Composing Music for Films" + }, + { + "name": "MUST 8717", + "title": "Composition" + }, + { + "name": "MUST 8719", + "title": "MIDI" + }, + { + "name": "MUST 8720", + "title": "New Music Seminar" + }, + { + "name": "MUST 8721", + "title": "Computer Music Studio" + }, + { + "name": "MUST 8722", + "title": "Scoring for Film and Digital Media" + }, + { + "name": "MUST 8724", + "title": "Printing Musical Scores and Parts" + }, + { + "name": "MUST 8725", + "title": "Computers in Mus Applications" + }, + { + "name": "MUST 8726", + "title": "Computer Synthesis" + }, + { + "name": "MUST 8727", + "title": "Electronic Music Composition: Practice, History, Theory" + }, + { + "name": "MUST 8728", + "title": "Advanced Audio Production" + }, + { + "name": "MUST 8731", + "title": "The Pedagogy of Music Theory" + }, + { + "name": "MUST 8737", + "title": "History and Pedagogy of Musicology" + }, + { + "name": "MUST 8738", + "title": "Schenkerian Analysis 1" + }, + { + "name": "MUST 8739", + "title": "Schenkerian Analysis 2" + }, + { + "name": "MUST 8740", + "title": "Seminar in Composition" + }, + { + "name": "MUST 8741", + "title": "Analytical Techniques" + }, + { + "name": "MUST 8742", + "title": "Seminar in Theoretical Analysis" + }, + { + "name": "MUST 8743", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 8744", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 8745", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 8746", + "title": "Seminar in Stylistic Analysis" + }, + { + "name": "MUST 8747", + "title": "Aesthetics of Music" + }, + { + "name": "MUST 8748", + "title": "Seminar in Post-Tonal Theory" + }, + { + "name": "MUST 8749", + "title": "Current Topics in Musicology and Theory" + }, + { + "name": "MUST 8751", + "title": "Singing on Record" + }, + { + "name": "MUST 8752", + "title": "Studies in Renaissance Music" + }, + { + "name": "MUST 8753", + "title": "Music in the Baroque Era: Seventeenth Century" + }, + { + "name": "MUST 8754", + "title": "Music in the Classical Period" + }, + { + "name": "MUST 8755", + "title": "Music in the Romantic Period I" + }, + { + "name": "MUST 8756", + "title": "Music in the 20th Century: 1900-1945" + }, + { + "name": "MUST 8757", + "title": "Music of the Late Baroque" + }, + { + "name": "MUST 8758", + "title": "Sons of J.S. Bach" + }, + { + "name": "MUST 8759", + "title": "Trad/Pop Mus of Latin Am" + }, + { + "name": "MUST 8761", + "title": "Nineteenth-Century Program Music" + }, + { + "name": "MUST 8762", + "title": "Music Technology" + }, + { + "name": "MUST 8763", + "title": "Studies in Performance Practice" + }, + { + "name": "MUST 8764", + "title": "Studies in Performance Practice" + }, + { + "name": "MUST 8765", + "title": "Late Nineteenth-Century Russian Music" + }, + { + "name": "MUST 8766", + "title": "Music of the Caribbean" + }, + { + "name": "MUST 8767", + "title": "Nineteenth Century Piano Music" + }, + { + "name": "MUST 8768", + "title": "Renaissance Performance Practice" + }, + { + "name": "MUST 8769", + "title": "Verdi Seminar" + }, + { + "name": "MUST 8771", + "title": "Post-Tonal Theory II" + }, + { + "name": "MUST 8773", + "title": "Digital Signal Processing for Music" + }, + { + "name": "MUST 8774", + "title": "Hearing Music: Acoustics and Psychoacoustics of Music" + }, + { + "name": "MUST 8775", + "title": "Seminar in Audio Software Design" + }, + { + "name": "MUST 8776", + "title": "Seminar in Physical Computing and Electronic Instrument Design" + }, + { + "name": "MUST 8777", + "title": "American Popular Music" + }, + { + "name": "MUST 8778", + "title": "Scoring and Audio Design for Video Games" + }, + { + "name": "MUST 8779", + "title": "Romantic Performance Practice: The Schumanns, Chopin, and Brahms" + }, + { + "name": "MUST 9182", + "title": "Independent Study" + }, + { + "name": "MUST 9282", + "title": "Independent Study" + }, + { + "name": "MUST 9701", + "title": "Doctoral Seminar Analysis, Interpretation, and Performance" + }, + { + "name": "MUST 9702", + "title": "Doctoral Seminar in Music Studies: Music Theory" + }, + { + "name": "MUST 9703", + "title": "Doctoral Seminar in Music Studies: Music History" + }, + { + "name": "MUST 9704", + "title": "Doctoral Seminar in Music Studies: Music Composition" + }, + { + "name": "MUST 9994", + "title": "Preliminary Exam Preparation" + }, + { + "name": "MUST 9995", + "title": "Final Project" + }, + { + "name": "MUST 9996", + "title": "Final Written Project: Music Theory" + }, + { + "name": "MUST 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "MUST 9999", + "title": "Dissertation/Monograph Research" + }, + { + "name": "MUST E000", + "title": "Elective - needs evaluation" + }, + { + "name": "MUST F000", + "title": "* See Statement Below" + }, + { + "name": "MUST L000", + "title": "Elective LL" + }, + { + "name": "MUST P000", + "title": "Elective P" + }, + { + "name": "MUST U000", + "title": "Elective UL" + }, + { + "name": "NAVS 1001", + "title": "Naval Orientation" + }, + { + "name": "NAVS 1002", + "title": "Seapower and Maritime Affairs" + }, + { + "name": "NAVS 1003", + "title": "Naval Science Drill" + }, + { + "name": "NAVS 2001", + "title": "Leadership & Management" + }, + { + "name": "NAVS 2002", + "title": "Navigation" + }, + { + "name": "NAVS 3001", + "title": "Naval Ships Systems I: Engineering" + }, + { + "name": "NAVS 3002", + "title": "Naval Ships Systems II: Weapons" + }, + { + "name": "NAVS 3003", + "title": "Evolution of Warfare" + }, + { + "name": "NAVS 4001", + "title": "Naval Operations and Seamanship" + }, + { + "name": "NAVS 4002", + "title": "Leadership and Ethics" + }, + { + "name": "NAVS 4003", + "title": "Fundamentals of Maneuver Warfare" + }, + { + "name": "NMS 9621", + "title": "Neuromotor Science 1: Neural Factors" + }, + { + "name": "NMS 9622", + "title": "Neuromotor Science: Instrumentation" + }, + { + "name": "NMS 9623", + "title": "Neuromotor Science: Programming" + }, + { + "name": "NMS 9624", + "title": "Neuromotor Science 2: Mechanics and Models" + }, + { + "name": "NMS 9627", + "title": "Neuromotor Science 3: Cognition and Learning" + }, + { + "name": "NMS 9653", + "title": "Grantsmanship" + }, + { + "name": "NMS 9654", + "title": "Neuromotor Science: Laboratory Rotation and Seminar" + }, + { + "name": "NMS 9682", + "title": "Neuromotor Science: Independent Study" + }, + { + "name": "NMS 9994", + "title": "Doctoral Preliminary Exams" + }, + { + "name": "NMS 9998", + "title": "Dissertation Proposal" + }, + { + "name": "NMS 9999", + "title": "Dissertation Research" + }, + { + "name": "NSCI 0817", + "title": "Brain Matters" + }, + { + "name": "NSCI 1051", + "title": "Fundamentals of Neuroscience" + }, + { + "name": "NSCI 1951", + "title": "Honors Fundamentals of Neuroscience" + }, + { + "name": "NSCI 2001", + "title": "Functional Neuroanatomy" + }, + { + "name": "NSCI 2121", + "title": "Development/Plasticity/Repair" + }, + { + "name": "NSCI 2122", + "title": "Cellular Neuroscience" + }, + { + "name": "NSCI 2222", + "title": "The Neurobiology of Disease" + }, + { + "name": "NSCI 3000", + "title": "Current Topics in Neuroscience" + }, + { + "name": "NSCI 3005", + "title": "Affective Neuroscience" + }, + { + "name": "NSCI 3006", + "title": "Stress and the Brain" + }, + { + "name": "NSCI 3007", + "title": "Neuropharmacology of Drugs of Abuse" + }, + { + "name": "NSCI 3008", + "title": "Decision Neuroscience" + }, + { + "name": "NSCI 3013", + "title": "Behavioral Epigenetics" + }, + { + "name": "NSCI 3087", + "title": "Techniques in Neuroscience" + }, + { + "name": "NSCI 3096", + "title": "Conducting Neuroscience Research" + }, + { + "name": "NSCI 3604", + "title": "Food on the Brain" + }, + { + "name": "NSCI 3900", + "title": "Honors Special Topics" + }, + { + "name": "NSCI 4182", + "title": "Independent Study in Neuroscience 1" + }, + { + "name": "NSCI 4191", + "title": "Collaborative Research I" + }, + { + "name": "NSCI 4197", + "title": "Capstone in Neuroscience" + }, + { + "name": "NSCI 4282", + "title": "Independent Study in Neuroscience 2" + }, + { + "name": "NSCI 4291", + "title": "Collaborative Research II" + }, + { + "name": "NSCI 5001", + "title": "Systems and Behavioral Neuroscience" + }, + { + "name": "NSCI 5002", + "title": "Neurochemistry" + }, + { + "name": "NSCI 5016", + "title": "Professional Development in Neuroscience" + }, + { + "name": "NSCI 8007", + "title": "Neuroendocrinology" + }, + { + "name": "NSCI 8008", + "title": "Neuropsychopathology" + }, + { + "name": "NSCI 8009", + "title": "Neuroscience Drug Discovery" + }, + { + "name": "NSCI 8010", + "title": "Topical Seminar in Neuroscience" + }, + { + "name": "NSCI 9381", + "title": "Readings in Neuroscience" + }, + { + "name": "NSCI 9991", + "title": "Directed Research" + }, + { + "name": "NSCI E000", + "title": "Elective - needs evaluation" + }, + { + "name": "NURS 1001", + "title": "Introduction to Professional Nursing" + }, + { + "name": "NURS 1089", + "title": "Nursing and Healthy Lifestyles Management" + }, + { + "name": "NURS 2144", + "title": "Health Assessment" + }, + { + "name": "NURS 2189", + "title": "Nursing Community Home I" + }, + { + "name": "NURS 2261", + "title": "Pharmacology for Generalist Nursing Practice" + }, + { + "name": "NURS 2289", + "title": "Community Home II" + }, + { + "name": "NURS 2589", + "title": "Generalist Nursing Practice I: Principles of Care and Clinical Decision Making" + }, + { + "name": "NURS 3089", + "title": "Generalist Nursing Practice II: Medical Surgical and Psychiatric Nursing" + }, + { + "name": "NURS 3189", + "title": "Generalist Nursing Practice III: Maternal Child Health Nursing" + }, + { + "name": "NURS 3204", + "title": "Perspectives on Health I: Thinking Globally" + }, + { + "name": "NURS 3289", + "title": "Nursing Community Home III" + }, + { + "name": "NURS 3296", + "title": "Perspectives on Health, Thinking Globally" + }, + { + "name": "NURS 3305", + "title": "Evidence Based Practice and Nursing Research: Analysis and Critical Appraisal" + }, + { + "name": "NURS 3389", + "title": "Perspectives on Health II: Acting Locally" + }, + { + "name": "NURS 3489", + "title": "Community Home IV" + }, + { + "name": "NURS 3689", + "title": "Generalist Nursing Practice II: Primary & Secondary Care of the Family" + }, + { + "name": "NURS 3789", + "title": "Generalist Nursing Practice III: Secondary Care Across the Lifespan" + }, + { + "name": "NURS 4000", + "title": "Special Topics" + }, + { + "name": "NURS 4198", + "title": "Health Policy and Economics" + }, + { + "name": "NURS 4296", + "title": "Genetics and Genomics" + }, + { + "name": "NURS 4489", + "title": "Senior Seminar: Evidence Based Practice Fieldwork Experience" + }, + { + "name": "NURS 4589", + "title": "Community Home V" + }, + { + "name": "NURS 4882", + "title": "Independent Study in Nursing" + }, + { + "name": "NURS 4885", + "title": "Generalist Nursing Practice Internship" + }, + { + "name": "NURS 4889", + "title": "Generalist Nursing Practice IV: Tertiary Care Across the Lifespan" + }, + { + "name": "NURS 5101", + "title": "Evidence Based Practice for Advanced Practice Nurses" + }, + { + "name": "NURS 5401", + "title": "Advanced Physiology and Pathophysiology" + }, + { + "name": "NURS 5402", + "title": "Pharmacotherapeutics for Advanced Practice Nursing" + }, + { + "name": "NURS 5501", + "title": "Theories for Advanced Practice Nursing of Families and Individuals" + }, + { + "name": "NURS 5552", + "title": "Clinical Assessment and Diagnosis in Advanced Practice Nursing" + }, + { + "name": "NURS 5553", + "title": "Pathophysiology for Advanced Nursing Practice" + }, + { + "name": "NURS 5557", + "title": "Pharmacology for Advanced Nursing Practice" + }, + { + "name": "NURS 5558", + "title": "Local and Global Perspectives in Population Health" + }, + { + "name": "NURS 5901", + "title": "Statistics for Evidence-Based Practice" + }, + { + "name": "NURS 5902", + "title": "Evidence-Based Practice" + }, + { + "name": "NURS 5903", + "title": "Research Methods: Quantitative and Qualitative" + }, + { + "name": "NURS 8101", + "title": "DNP Project Development I" + }, + { + "name": "NURS 8102", + "title": "DNP Project Development II" + }, + { + "name": "NURS 8103", + "title": "DNP Project Implementation" + }, + { + "name": "NURS 8201", + "title": "Health Indices of Urban Populations in Primary Health Care" + }, + { + "name": "NURS 8204", + "title": "Policy: Health Care Advocacy in Advanced Nursing Practice" + }, + { + "name": "NURS 8205", + "title": "Organizational and Systems Leadership" + }, + { + "name": "NURS 8206", + "title": "Health Economics and Business Practices in Primary Healthcare" + }, + { + "name": "NURS 8207", + "title": "Advancing Health Through Information Technology" + }, + { + "name": "NURS 8211", + "title": "Leadership and Health Policy in Clinical Nursing" + }, + { + "name": "NURS 8302", + "title": "Managing Quality Initiatives Through Nursing Quality Initiatives" + }, + { + "name": "NURS 8303", + "title": "Health Economics and Information Systems in Primary Health Care" + }, + { + "name": "NURS 8311", + "title": "Legal and Clinical Approach in Health Care" + }, + { + "name": "NURS 8701", + "title": "Psychopharmacology: Theory and Clinical Application" + }, + { + "name": "NURS 8788", + "title": "History and Philosophy of Higher Education and Nursing Education" + }, + { + "name": "NURS 8789", + "title": "Educational Technology and Approaches in Healthcare Learning Environments" + }, + { + "name": "NURS 8801", + "title": "Pedagogical Theory in Nursing Curriculum Development" + }, + { + "name": "NURS 8802", + "title": "Journey from Novice to Expert: Understanding the Nurse Learner" + }, + { + "name": "NURS 8803", + "title": "Evaluation of Learning and Instruction in Nursing Education" + }, + { + "name": "NURS 8804", + "title": "Program Evaluation and Program Improvement" + }, + { + "name": "NURS 9182", + "title": "Independent Study" + }, + { + "name": "NURS 9189", + "title": "Collaborative Partnerships: Interdisciplinary" + }, + { + "name": "NURS 9287", + "title": "Primary Care of Children" + }, + { + "name": "NURS 9289", + "title": "Collaborative Partnerships: Transdisciplinary" + }, + { + "name": "NURS 9377", + "title": "Primary Care of Adults I Theory" + }, + { + "name": "NURS 9387", + "title": "Primary Care of Adults I Practicum" + }, + { + "name": "NURS 9389", + "title": "DNP I Practicum" + }, + { + "name": "NURS 9477", + "title": "Primary Care of Adults II Theory" + }, + { + "name": "NURS 9487", + "title": "Primary Care of Adults II Practicum" + }, + { + "name": "NURS 9488", + "title": "Transition to the Nurse Educator Role Practicum" + }, + { + "name": "NURS 9489", + "title": "DNP II Practicum" + }, + { + "name": "NURS 9577", + "title": "Primary Care of the Elderly I Theory" + }, + { + "name": "NURS 9585", + "title": "Clinical Nurse Leader Practicum" + }, + { + "name": "NURS 9586", + "title": "Clinical Nurse Leader Immersion" + }, + { + "name": "NURS 9587", + "title": "Primary Care of the Elderly I Practicum" + }, + { + "name": "NURS 9677", + "title": "Primary Care of the Elderly II Theory" + }, + { + "name": "NURS 9687", + "title": "Primary Care of the Elderly II Practicum" + }, + { + "name": "NURS 9777", + "title": "Primary Care of Children and Youth Theory" + }, + { + "name": "NURS 9787", + "title": "Primary Care of Children and Youth Practicum" + }, + { + "name": "NURS 9885", + "title": "DNP Clinical Capstone" + }, + { + "name": "NURS 9886", + "title": "DNP Evidence-Based Practice Project Implementation" + }, + { + "name": "NURS 9887", + "title": "Primary Care of Adolescents" + }, + { + "name": "NURS 9888", + "title": "Primary Care of the Elderly" + }, + { + "name": "NURS 9987", + "title": "Primary Care of Adults" + }, + { + "name": "NURS 9988", + "title": "Transition to Practice:Advanced Practice Nurse Practicum" + }, + { + "name": "NURS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "NURS T000", + "title": "Elective" + }, + { + "name": "OTHR 1001", + "title": "Exploring Occupational Therapy" + }, + { + "name": "OTHR 5001", + "title": "Developmental Perspectives in Occupational Therapy" + }, + { + "name": "OTHR 5002", + "title": "Theoretical Perspectives of Occupation" + }, + { + "name": "OTHR 5003", + "title": "Group Dynamics in Occupational Therapy" + }, + { + "name": "OTHR 5005", + "title": "Neuroscience Perspectives in Occupational Therapy" + }, + { + "name": "OTHR 5008", + "title": "Kinesiology Perspectives in Occupational Therapy" + }, + { + "name": "OTHR 5009", + "title": "Entrepreneurship in Health Professions" + }, + { + "name": "OTHR 5013", + "title": "Medical Perspectives in Occupational Therapy" + }, + { + "name": "OTHR 5014", + "title": "Person-Environment Dynamics in Occupation" + }, + { + "name": "OTHR 5015", + "title": "Human Dynamics in Occupational Therapy" + }, + { + "name": "OTHR 5019", + "title": "Theoretical Perspectives in Occupational Therapy" + }, + { + "name": "OTHR 5104", + "title": "Occupational Therapy Practice: Mental Health" + }, + { + "name": "OTHR 5105", + "title": "Occupational Therapy Practice: Children & Youth" + }, + { + "name": "OTHR 5123", + "title": "Occupational Therapy Practice: Assistive Technology" + }, + { + "name": "OTHR 5151", + "title": "Research I: Methodologies for Occupational Therapy" + }, + { + "name": "OTHR 5152", + "title": "Research II: Design & Proposal Development for Occupational Therapy" + }, + { + "name": "OTHR 5161", + "title": "Occupational Therapy Service Delivery & Management" + }, + { + "name": "OTHR 5185", + "title": "Occupational Therapy Practice: Fieldwork IA" + }, + { + "name": "OTHR 5219", + "title": "Occupational Therapy Practice: Community and Social Participation" + }, + { + "name": "OTHR 5221", + "title": "Health & Wellness in the Community" + }, + { + "name": "OTHR 5222", + "title": "Occupational Therapy Practice: Adults and Older Adults" + }, + { + "name": "OTHR 5251", + "title": "Research III: Implementation in Occupational Therapy" + }, + { + "name": "OTHR 5252", + "title": "Research IV: Outcomes & Dissemination Promoting Occupational Therapy" + }, + { + "name": "OTHR 5285", + "title": "Occupational Therapy Practice: Fieldwork IB" + }, + { + "name": "OTHR 5286", + "title": "Occupational Therapy Practice: Fieldwork IC" + }, + { + "name": "OTHR 5287", + "title": "Intensive Occupational Therapy Practice: Fieldwork IIA" + }, + { + "name": "OTHR 5288", + "title": "Intensive Occupational Therapy Practice: Fieldwork IIB" + }, + { + "name": "OTHR 5301", + "title": "Professional Development and Learning in OT Education" + }, + { + "name": "OTHR 8100", + "title": "Topics in Occupational Therapy Specialty" + }, + { + "name": "OTHR 8121", + "title": "Environmental Adaptations" + }, + { + "name": "OTHR 8122", + "title": "Studies in Assistive Technology" + }, + { + "name": "OTHR 8131", + "title": "Assessment Tools for Pediatric Occupational Therapy Practice " + }, + { + "name": "OTHR 8132", + "title": "Occupational Therapy Intervention in Pediatrics" + }, + { + "name": "OTHR 8133", + "title": "Family Centered Care" + }, + { + "name": "OTHR 8134", + "title": "Developmental Issues in the Early Years: An Occupational Therapy Perspective " + }, + { + "name": "OTHR 8141", + "title": "Concepts of Gerontological Rehabilitation I " + }, + { + "name": "OTHR 8162", + "title": "Advanced Management in Health Related Service Delivery" + }, + { + "name": "OTHR 8172", + "title": "Neurobiological Foundations of Sensory Integration " + }, + { + "name": "OTHR 8173", + "title": "Sensory Integration and Praxis Test (SIPT) Administration and Interpretation" + }, + { + "name": "OTHR 8174", + "title": "Sensory Integration Practice Applications " + }, + { + "name": "OTHR 8509", + "title": "Leadership in the Health Professions: The Art and Science of Influence" + }, + { + "name": "OTHR 8511", + "title": "Clinical Education and Fieldwork Supervision" + }, + { + "name": "OTHR 8512", + "title": "Studies in Outcome Measures and Analysis" + }, + { + "name": "OTHR 8513", + "title": "Evidence-Based Practice and Clinical Research" + }, + { + "name": "OTHR 8514", + "title": "Occupational Based Theories and Participation" + }, + { + "name": "OTHR 8901", + "title": "Capstone Project" + }, + { + "name": "OTHR 8902", + "title": "Capstone Project Inquiry" + }, + { + "name": "OTHR 8903", + "title": "Capstone Project Proposal" + }, + { + "name": "OTHR 8904", + "title": "Capstone Project Implementation" + }, + { + "name": "OTHR 8905", + "title": "Capstone Project" + }, + { + "name": "OTHR 9082", + "title": "Independent Study" + }, + { + "name": "OTHR 9089", + "title": "Field Study and Professional Portfolios" + }, + { + "name": "OTHR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "OTHR T000", + "title": "Elective" + }, + { + "name": "ORBG 5001", + "title": "Introduction to Dental Assisting" + }, + { + "name": "ORBG 5002", + "title": "Chairside Dental Assisting" + }, + { + "name": "ORBG 5004", + "title": "Dental Radiology Lecture and Lab" + }, + { + "name": "ORBG 5005", + "title": "Dental Anatomy" + }, + { + "name": "ORBG 8011", + "title": "Molecular Oral and Craniofacial Biology" + }, + { + "name": "ORBG 8012", + "title": "Advanced Dental Pharmacology and Therapeutics" + }, + { + "name": "ORBG 8013", + "title": "Introduction to Evidence-Based Dentistry" + }, + { + "name": "ORBG 8014", + "title": "Clinical Anatomy of the Head and Neck" + }, + { + "name": "ORBG 8015", + "title": "Research Methodology and Study Design" + }, + { + "name": "ORBG 8016", + "title": "Cases in Oral and Maxillofacial Pathology" + }, + { + "name": "ORBG 8017", + "title": "Oral Microbiology and Immunology" + }, + { + "name": "ORBG 8018", + "title": "Biostatistics" + }, + { + "name": "ORBG 8019", + "title": "Advanced Oral and Maxillofacial Radiology" + }, + { + "name": "ORBG 8021", + "title": "Microbiome" + }, + { + "name": "ORBG 8022", + "title": "Microbiome Laboratory" + }, + { + "name": "ORBG 8023", + "title": "Craniofacial Bone Biology and Maxillofacial/Dental Orthopedic Care" + }, + { + "name": "ORBG 8024", + "title": "Regeneration of Bone and Dental Hard Tissues" + }, + { + "name": "ORBG 8025", + "title": "Temporomandibular Joint Biology" + }, + { + "name": "ORBG 8026", + "title": "Neuroscience of Pain" + }, + { + "name": "ORBG 8027", + "title": "Biology of Drug Delivery Mechanisms" + }, + { + "name": "ORBG 8028", + "title": "Basic and Advanced Statistical Methods" + }, + { + "name": "ORBG 8029", + "title": "Behavioral Change Theories and Practice" + }, + { + "name": "ORBG 8031", + "title": "Biomaterials" + }, + { + "name": "ORBG 8032", + "title": "Practical Clinical Practice" + }, + { + "name": "ORBG 8033", + "title": "Bioethics and Critical Thinking in Dentistry" + }, + { + "name": "ORBG 8034", + "title": "Advanced Practical Clinical Practice" + }, + { + "name": "ORBG 8035", + "title": "Introduction to Orthodontics" + }, + { + "name": "ORBG 8036", + "title": "Molecular Technology for Translation to the Dental Clinic" + }, + { + "name": "ORBG 8037", + "title": "Science of Taste Sensation and Relation with Oral Conditions" + }, + { + "name": "ORBG 9885", + "title": "Pre-clinical Dental Experience for the Kuwaiti Program I" + }, + { + "name": "ORBG 9886", + "title": "Pre-clinical Dental Experience for the Kuwaiti Program II" + }, + { + "name": "ORBG 9991", + "title": "Research in Oral Biology" + }, + { + "name": "ORBG 9993", + "title": "Masters in Oral Health Sciences Qualification Exam" + }, + { + "name": "ORBG 9996", + "title": "Master's Thesis in Oral Biology" + }, + { + "name": "PHTE 2541", + "title": "Introduction to Teaching Health Education I" + }, + { + "name": "PHTE 2542", + "title": "Introduction to Teaching Health Education II" + }, + { + "name": "PHTE 2543", + "title": "Basic Movement I" + }, + { + "name": "PHTE 2544", + "title": "Basic Movement II" + }, + { + "name": "PHTE 2555", + "title": "Microteaching in PHETE" + }, + { + "name": "PHTE 2556", + "title": "Tutorial in PHETE" + }, + { + "name": "PHTE 2601", + "title": "Movement and Learning in Early Childhood" + }, + { + "name": "PHTE 3541", + "title": "Advanced Movement I" + }, + { + "name": "PHTE 3542", + "title": "Advanced Movement II" + }, + { + "name": "PHTE 3553", + "title": "PHETE I" + }, + { + "name": "PHTE 3554", + "title": "PHETE II" + }, + { + "name": "PHTE 3561", + "title": "Health Science I" + }, + { + "name": "PHTE 3562", + "title": "Health Science II" + }, + { + "name": "PHTE 3587", + "title": "PHETE Practicum I" + }, + { + "name": "PHTE 3687", + "title": "PHETE Practicum II" + }, + { + "name": "PHTE 3787", + "title": "Parkway High School Practicum" + }, + { + "name": "PHTE 4554", + "title": "The School Environment" + }, + { + "name": "PHTE 4556", + "title": "Developmental and Adapted PHETE" + }, + { + "name": "PHTE 4563", + "title": "Health Science III" + }, + { + "name": "PHTE 4587", + "title": "PHETE Practicum III" + }, + { + "name": "PHTE 4588", + "title": "Student Teaching in Health and Physical Education" + }, + { + "name": "PHTE 4589", + "title": "Field Study in PHETE" + }, + { + "name": "PHTE 4590", + "title": "Special Topics in PHETE" + }, + { + "name": "PHTE 5601", + "title": "Movement and Learning in Early Childhood" + }, + { + "name": "PHTE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PDS 2011", + "title": "Painting" + }, + { + "name": "PDS 2051", + "title": "Painting Materials & Techniques" + }, + { + "name": "PDS 2111", + "title": "Painting" + }, + { + "name": "PDS 2211", + "title": "Painting on Paper for Non-Tyler BFA Students" + }, + { + "name": "PDS 2231", + "title": "Painting Workshop" + }, + { + "name": "PDS 2311", + "title": "Intermediate Drawing" + }, + { + "name": "PDS 2321", + "title": "Intermediate Drawing" + }, + { + "name": "PDS 2331", + "title": "Intermediate Figure Drawing" + }, + { + "name": "PDS 2341", + "title": "Digital Drawing" + }, + { + "name": "PDS 2361", + "title": "Drawing Workshop" + }, + { + "name": "PDS 2511", + "title": "Art Matters" + }, + { + "name": "PDS 2521", + "title": "Video Workshop" + }, + { + "name": "PDS 2611", + "title": "Sculpture" + }, + { + "name": "PDS 2621", + "title": "Sculpture: Rome" + }, + { + "name": "PDS 2631", + "title": "Figure Modeling" + }, + { + "name": "PDS 2632", + "title": "Installation" + }, + { + "name": "PDS 2633", + "title": "Figure Modeling: Rome" + }, + { + "name": "PDS 2641", + "title": "Mold-Making Technology" + }, + { + "name": "PDS 3011", + "title": "Advanced Painting" + }, + { + "name": "PDS 3021", + "title": "Landscape" + }, + { + "name": "PDS 3031", + "title": "Figure Painting" + }, + { + "name": "PDS 3041", + "title": "Color" + }, + { + "name": "PDS 3111", + "title": "Advanced Painting" + }, + { + "name": "PDS 3112", + "title": "Advanced Painting: Rome" + }, + { + "name": "PDS 3141", + "title": "Color" + }, + { + "name": "PDS 3211", + "title": "Painting on Paper" + }, + { + "name": "PDS 3221", + "title": "Painting on Paper" + }, + { + "name": "PDS 3231", + "title": "Painting Workshop" + }, + { + "name": "PDS 3232", + "title": "Fresco Painting" + }, + { + "name": "PDS 3341", + "title": "Digital Drawing" + }, + { + "name": "PDS 3351", + "title": "Rome Sketchbook" + }, + { + "name": "PDS 3361", + "title": "Drawing Workshop" + }, + { + "name": "PDS 3411", + "title": "Advanced Drawing" + }, + { + "name": "PDS 3412", + "title": "Advanced Drawing: Rome" + }, + { + "name": "PDS 3421", + "title": "Advanced Drawing" + }, + { + "name": "PDS 3431", + "title": "Figure Drawing" + }, + { + "name": "PDS 3441", + "title": "Figure Drawing" + }, + { + "name": "PDS 3451", + "title": "Interactive Projects" + }, + { + "name": "PDS 3521", + "title": "Advanced Video" + }, + { + "name": "PDS 3596", + "title": "PDS Seminar" + }, + { + "name": "PDS 3611", + "title": "Advanced Sculpture" + }, + { + "name": "PDS 3612", + "title": "Advanced Sculpture" + }, + { + "name": "PDS 3621", + "title": "Advanced Sculpture" + }, + { + "name": "PDS 3622", + "title": "Advanced Sculpture" + }, + { + "name": "PDS 3631", + "title": "Installation" + }, + { + "name": "PDS 3641", + "title": "Mold-Making Technology" + }, + { + "name": "PDS 3711", + "title": "Foundry" + }, + { + "name": "PDS 3721", + "title": "Public Art Projects" + }, + { + "name": "PDS 3731", + "title": "Sculpture Techniques & Materials" + }, + { + "name": "PDS 3741", + "title": "Junior Sculpture Seminar" + }, + { + "name": "PDS 3751", + "title": "Sculpture Workshop" + }, + { + "name": "PDS 4011", + "title": "Advanced Painting" + }, + { + "name": "PDS 4021", + "title": "Landscape" + }, + { + "name": "PDS 4031", + "title": "Figure Painting" + }, + { + "name": "PDS 4041", + "title": "Color" + }, + { + "name": "PDS 4072", + "title": "Senior Painting Studio" + }, + { + "name": "PDS 4111", + "title": "Advanced Painting" + }, + { + "name": "PDS 4172", + "title": "Senior Painting Studio" + }, + { + "name": "PDS 4411", + "title": "Advanced Drawing" + }, + { + "name": "PDS 4431", + "title": "Figure Drawing" + }, + { + "name": "PDS 4441", + "title": "Figure Drawing" + }, + { + "name": "PDS 4511", + "title": "Critical Dialogues" + }, + { + "name": "PDS 4582", + "title": "Independent Study" + }, + { + "name": "PDS 4585", + "title": "Field Internship" + }, + { + "name": "PDS 4611", + "title": "Senior Sculpture" + }, + { + "name": "PDS 4711", + "title": "Foundry" + }, + { + "name": "PDS 8011", + "title": "Graduate Drawing" + }, + { + "name": "PDS 8012", + "title": "Graduate Drawing II" + }, + { + "name": "PDS 8183", + "title": "Graduate Projects: Sculpture" + }, + { + "name": "PDS 8184", + "title": "Graduate Projects: Sculpture II" + }, + { + "name": "PDS 8283", + "title": "Graduate Projects: Painting" + }, + { + "name": "PDS 8383", + "title": "Graduate Projects: Painting and Sculpture" + }, + { + "name": "PDS 8384", + "title": "Graduate Projects: Painting and Sculpture II" + }, + { + "name": "PDS 8483", + "title": "Graduate Projects: Painting" + }, + { + "name": "PDS 8501", + "title": "Theories Visual Represnt" + }, + { + "name": "PDS 8502", + "title": "Graduate Seminar" + }, + { + "name": "PDS 8503", + "title": "Graduate Seminar: Sculpture" + }, + { + "name": "PDS 8504", + "title": "Graduate Seminar: Painting" + }, + { + "name": "PDS 8512", + "title": "Graduate Seminar II" + }, + { + "name": "PDS 8513", + "title": "Graduate Sculpture Seminar II" + }, + { + "name": "PDS 8514", + "title": "Graduate Painting Seminar II" + }, + { + "name": "PDS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PDS T000", + "title": "Elective" + }, + { + "name": "PATH M195", + "title": "Interp Clin Lab Tests" + }, + { + "name": "PATH M201", + "title": "Hematopathology" + }, + { + "name": "PATH M202", + "title": "Endocrine Pathology" + }, + { + "name": "PATH M203", + "title": "Neuropathology" + }, + { + "name": "PATH M204", + "title": "Clinical Cytogenetics" + }, + { + "name": "PATH M205", + "title": "Cytopathology" + }, + { + "name": "PATH M206", + "title": "Liver & Kidney Pathology" + }, + { + "name": "PATH M207", + "title": "Renal Path Elec. Micro" + }, + { + "name": "PATH M208", + "title": "Oral Pathology" + }, + { + "name": "PATH M209", + "title": "Gyn Pathology" + }, + { + "name": "PATH M211", + "title": "Clin Micro/Imm/Vir" + }, + { + "name": "PATH M213", + "title": "Blood Bank" + }, + { + "name": "PATH M215", + "title": "Clinical Coagulation" + }, + { + "name": "PATH M219", + "title": "Cardiac Pathology" + }, + { + "name": "PATH M221", + "title": "Dermopathology" + }, + { + "name": "PATH M223", + "title": "GI and Liver Pathology" + }, + { + "name": "PATH M225", + "title": "Immunogen & Flow Cytom" + }, + { + "name": "PATH M227", + "title": "Lab Hem & Surg Pathology" + }, + { + "name": "PATH M228", + "title": "Lung Pathology" + }, + { + "name": "PATH M229", + "title": "Surgical Pathology" + }, + { + "name": "PATH M230", + "title": "Soph. Elect in Path." + }, + { + "name": "PATH M231", + "title": "Interpr Clin Lab Tests" + }, + { + "name": "PATH M235", + "title": "Clinical Chemistry" + }, + { + "name": "PATH M300", + "title": "Pathology Elective" + }, + { + "name": "PATH M358", + "title": "Principles of General Pathology" + }, + { + "name": "PATH M361", + "title": "Principles of Molecular Pathology" + }, + { + "name": "PATH M362", + "title": "Principles of Renal Pathology" + }, + { + "name": "PATH M365", + "title": "Principles of Cytopathology" + }, + { + "name": "PATH M366", + "title": "Principles of Surgical Pathology" + }, + { + "name": "PATH M371", + "title": "Principles of Transfusion Medicine" + }, + { + "name": "PATH M372", + "title": "Principles of Histocompatibility" + }, + { + "name": "PATH M373", + "title": "Principles of Hematopathology" + }, + { + "name": "PATH M658", + "title": "General Pathology" + }, + { + "name": "PATH M660", + "title": "Surgical Pathology" + }, + { + "name": "PATH M661", + "title": "Molecular Pathology" + }, + { + "name": "PATH M662", + "title": "Renal Pathology" + }, + { + "name": "PATH M665", + "title": "Cytopathology" + }, + { + "name": "PATH M971", + "title": "Transfusion Medicine" + }, + { + "name": "PATH M972", + "title": "Histocompatibility" + }, + { + "name": "PATH M973", + "title": "Hematopathology" + }, + { + "name": "PS 5451", + "title": "Statistical Quality Control" + }, + { + "name": "PS 5471", + "title": "Biotechnology:Bioprocess Basic" + }, + { + "name": "PS 5477", + "title": "Good Manufacturing Practices" + }, + { + "name": "PS 5478", + "title": "High Purity Water System" + }, + { + "name": "PS 5492", + "title": "Production of Sterile Products" + }, + { + "name": "PS 5493", + "title": "Sterilization Processes" + }, + { + "name": "PS 5499", + "title": "Pharmaceutical Drug Dosage Forms" + }, + { + "name": "PS 5501", + "title": "Development of Sterile Products" + }, + { + "name": "PS 5575", + "title": "Regulatory Sciences" + }, + { + "name": "PS 8000", + "title": "Topics in Pharmaceutical Sciences" + }, + { + "name": "PS 8001", + "title": "Principles of Drug Action/Pharmacokinetics" + }, + { + "name": "PS 8002", + "title": "Pharmaceutical Analysis" + }, + { + "name": "PS 8003", + "title": "Pharmaceutical Manufacturing I: Preformulation/Formulation" + }, + { + "name": "PS 8004", + "title": "Pharmaceutical Manufacturing II" + }, + { + "name": "PS 8005", + "title": "Pharmaceutical Biotechnology" + }, + { + "name": "PS 8006", + "title": "Physical Pharmacy I" + }, + { + "name": "PS 8007", + "title": "Applied Biopharmaceutics" + }, + { + "name": "PS 8008", + "title": "Advanced Principles of Pharmacokinetics" + }, + { + "name": "PS 8009", + "title": "Advanced Medicinal Chemistry I" + }, + { + "name": "PS 8011", + "title": "Advanced Medicinal Chemistry II" + }, + { + "name": "PS 8012", + "title": "Radioisotope Methodology" + }, + { + "name": "PS 8051", + "title": "Seminar in Pharm Science" + }, + { + "name": "PS 8111", + "title": "Introduction to Toxicology" + }, + { + "name": "PS 8121", + "title": "Department of Pharmaceutical Sciences Seminar Series" + }, + { + "name": "PS 8122", + "title": "Writing and Publishing a Review Article" + }, + { + "name": "PS 8123", + "title": "Bioinformatic Genes Drug" + }, + { + "name": "PS 8125", + "title": "Journ Club/Pharmacodynam" + }, + { + "name": "PS 8126", + "title": "Laboratory Experience in Pharmaceutical Sciences" + }, + { + "name": "PS 8127", + "title": "Pharmacokinetics" + }, + { + "name": "PS 8128", + "title": "Principles in Drug Discovery" + }, + { + "name": "PS 8129", + "title": "Bioethics in Research" + }, + { + "name": "PS 8131", + "title": "Principles of Biochemistry" + }, + { + "name": "PS 8132", + "title": "Topics in Pharmaceutical Biotechnology" + }, + { + "name": "PS 8133", + "title": "Introduction to Translational Molecular Technology" + }, + { + "name": "PS 8134", + "title": "Neuroscience of Pain" + }, + { + "name": "PS 8402", + "title": "Pharmacodynamics" + }, + { + "name": "PS 8403", + "title": "Advanced Pharmacogenomics" + }, + { + "name": "PS 8404", + "title": "Pharmaceutical Sciences Literature Review" + }, + { + "name": "PS 8464", + "title": "Abuses of Drugs and Chemicals" + }, + { + "name": "PS 8478", + "title": "Modified Release Dosage Forms" + }, + { + "name": "PS 8502", + "title": "Advanced Pharmacokinetic Modeling I" + }, + { + "name": "PS 8582", + "title": "Physical Pharmacy II" + }, + { + "name": "PS 8583", + "title": "Chemical Surfaces & Interfaces" + }, + { + "name": "PS 8584", + "title": "Advanced Drug and Gene Delivery Systems" + }, + { + "name": "PS 8592", + "title": "Food and Drug Law" + }, + { + "name": "PS 8603", + "title": "Dermatopharmaceutics" + }, + { + "name": "PS 8985", + "title": "Teaching in Higher Educ" + }, + { + "name": "PS 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "PS 9996", + "title": "Master's Research" + }, + { + "name": "PS 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "PS 9999", + "title": "Dissertation Research" + }, + { + "name": "PS P151", + "title": "Medicinal Chemistry I" + }, + { + "name": "PS P152", + "title": "Medicinal Chemistry II" + }, + { + "name": "PS P155", + "title": "Principles of Infectious Diseases" + }, + { + "name": "PS P157", + "title": "Anatomy/Physiology" + }, + { + "name": "PS P158", + "title": "Ant. Infective Agents" + }, + { + "name": "PS P161", + "title": "Pharmaceutics I" + }, + { + "name": "PS P162", + "title": "Pharmaceutics II" + }, + { + "name": "PS P164", + "title": "Pharmacology" + }, + { + "name": "PS P171", + "title": "Pharmacy Lab I" + }, + { + "name": "PS P172", + "title": "Pharmacy Lab II" + }, + { + "name": "PS P251", + "title": "Medicinal Chemistry III and Natural Products" + }, + { + "name": "PS P261", + "title": "Concepts in Pharmacogenomics" + }, + { + "name": "PS P262", + "title": "Pharmacokinetics" + }, + { + "name": "PS P265", + "title": "Pharmacology II" + }, + { + "name": "PS P271", + "title": "Pharmacy Lab III" + }, + { + "name": "PS P272", + "title": "Pharmacy Lab IV" + }, + { + "name": "PS P310", + "title": "Psych/Clin Sub Abuse" + }, + { + "name": "PS P381", + "title": "Emerging Therapeutic Iss" + }, + { + "name": "PS P382", + "title": "Practical Chromatography" + }, + { + "name": "PS P383", + "title": "Natural Product Analysis" + }, + { + "name": "PS P384", + "title": "Writing/Pub Review Artic" + }, + { + "name": "PS P386", + "title": "Adv. Clinical Toxicology" + }, + { + "name": "PS P387", + "title": "Veterinary Pharmacy" + }, + { + "name": "PS P389", + "title": "Research" + }, + { + "name": "PP P012", + "title": "Eff Comm/Pharmacist I" + }, + { + "name": "PP P013", + "title": "Eff Comm/Pharmacist II" + }, + { + "name": "PP P136", + "title": "IPPE 1" + }, + { + "name": "PP P140", + "title": "Professional Practice" + }, + { + "name": "PP P142", + "title": "Soc & Econ Aspcts/Hlthcare" + }, + { + "name": "PP P145", + "title": "Immunology/Biotechnology" + }, + { + "name": "PP P146", + "title": "Drug Information" + }, + { + "name": "PP P148", + "title": "Introduction to Pharmacy Care" + }, + { + "name": "PP P231", + "title": "Intr/Pharmaceutical Care" + }, + { + "name": "PP P233", + "title": "Path/Ther Cardiopulm I" + }, + { + "name": "PP P234", + "title": "Path/Ther Cardiopulm II" + }, + { + "name": "PP P235", + "title": "Pathophysiology/Therapeutics: Pediatrics" + }, + { + "name": "PP P236", + "title": "IPPE 2" + }, + { + "name": "PP P237", + "title": "Path/Ther Endocr/Meta Di" + }, + { + "name": "PP P239", + "title": "Pharm Care Rec I" + }, + { + "name": "PP P246", + "title": "Pharm Care Rec II" + }, + { + "name": "PP P248", + "title": "Communication Skills" + }, + { + "name": "PP P250", + "title": "Economics of Pharm Pract" + }, + { + "name": "PP P254", + "title": "Bio Stat/Med Lit Eval" + }, + { + "name": "PP P260", + "title": "Contemporary Pharmacy" + }, + { + "name": "PP P270", + "title": "Path/Ther Gastro-Nutri" + }, + { + "name": "PP P280", + "title": "Pharmacist Directed Care" + }, + { + "name": "PP P310", + "title": "Managed Care" + }, + { + "name": "PP P312", + "title": "ADRS Organ Systems Appr" + }, + { + "name": "PP P313", + "title": "Clin Pharmacokinetics" + }, + { + "name": "PP P314", + "title": "Practical Public Health for Pharmacists" + }, + { + "name": "PP P315", + "title": "Adv Clinical Practice I" + }, + { + "name": "PP P316", + "title": "Adv Clinical Practice II" + }, + { + "name": "PP P317", + "title": "The Pharmacists in Transitional Care" + }, + { + "name": "PP P318", + "title": "Palliative Care" + }, + { + "name": "PP P319", + "title": "Independent Community Pharmacy Ownership" + }, + { + "name": "PP P321", + "title": "Pathophysiology/Therapeutics Neurology/Psychiatry" + }, + { + "name": "PP P323", + "title": "Pathophysiology/Therapeutics of Oncology and Immunology" + }, + { + "name": "PP P325", + "title": "Pathophysiology/Therapeutics - Infectious Diseases" + }, + { + "name": "PP P330", + "title": "Path/Ther Gastro-Nutritn" + }, + { + "name": "PP P332", + "title": "Path/Ther Imm/Derm/Ophth" + }, + { + "name": "PP P334", + "title": "Path/Thercardiopulm III" + }, + { + "name": "PP P336", + "title": "IPPE 3" + }, + { + "name": "PP P338", + "title": "Pathophysiology/Therapeutics - Gastroenterology/Nutrition and Renal Disorders" + }, + { + "name": "PP P340", + "title": "Case Stud/Infectious Dis" + }, + { + "name": "PP P341", + "title": "Pharmacy Law" + }, + { + "name": "PP P342", + "title": "Prin & Prac Evid Based Med" + }, + { + "name": "PP P344", + "title": "Advanced Diabetes Management" + }, + { + "name": "PP P346", + "title": "Pract Politics & Pharm" + }, + { + "name": "PP P347", + "title": "Pharm Care Rec III" + }, + { + "name": "PP P348", + "title": "Pharm Care Rec IV" + }, + { + "name": "PP P350", + "title": "Adv Radiopharmaceuticals" + }, + { + "name": "PP P352", + "title": "Economics of Pharm Pract" + }, + { + "name": "PP P353", + "title": "Pharmacoeconomics" + }, + { + "name": "PP P354", + "title": "Pharm Care/Ambulatory Pr" + }, + { + "name": "PP P355", + "title": "Drug Interactions: Mechanisms, Analysis, Clinical Applications" + }, + { + "name": "PP P356", + "title": "Spec Topic in Oncology" + }, + { + "name": "PP P357", + "title": "Clinical Nutrition" + }, + { + "name": "PP P358", + "title": "Marketing Health Care Serv" + }, + { + "name": "PP P359", + "title": "Prin of Clin Immunology" + }, + { + "name": "PP P360", + "title": "App/Educational Methods" + }, + { + "name": "PP P361", + "title": "Phar Pract/Geriatric Pat" + }, + { + "name": "PP P362", + "title": "Selected Top:Inf Disease" + }, + { + "name": "PP P363", + "title": "Food & Drug Law" + }, + { + "name": "PP P364", + "title": "Food & Drug Law II" + }, + { + "name": "PP P365", + "title": "Outcomes, Diver Phar Prof" + }, + { + "name": "PP P366", + "title": "Seminar I" + }, + { + "name": "PP P367", + "title": "Seminar II" + }, + { + "name": "PP P368", + "title": "Intro to Nuclear Pharm" + }, + { + "name": "PP P369", + "title": "Managed Care Pharmacy" + }, + { + "name": "PP P370", + "title": "Sem/Pharmaceutical Ethic" + }, + { + "name": "PP P371", + "title": "Drugs, Devices & Consumers" + }, + { + "name": "PP P372", + "title": "Curr Issues Med Errors" + }, + { + "name": "PP P373", + "title": "Home Infusion Therapy" + }, + { + "name": "PP P374", + "title": "Pediatric Therapeutics" + }, + { + "name": "PP P375", + "title": "Sur/Radiopharmaceuticals" + }, + { + "name": "PP P376", + "title": "Women's Health Care" + }, + { + "name": "PP P377", + "title": "Curr Prob-Pharmacotherpy" + }, + { + "name": "PP P378", + "title": "Therap Issues Crit Care" + }, + { + "name": "PP P379", + "title": "Cont Cncpts/Parentarels" + }, + { + "name": "PP P380", + "title": "Case Studies ADRS" + }, + { + "name": "PP P381", + "title": "Clin Drug Development" + }, + { + "name": "PP P382", + "title": "Prin/Pract Clin Research" + }, + { + "name": "PP P383", + "title": "Good Clinical Practices" + }, + { + "name": "PP P384", + "title": "Med Error Sar & Contrl Pln" + }, + { + "name": "PP P386", + "title": "Pharmacoepidemiology" + }, + { + "name": "PP P387", + "title": "Veterinary Pharmacy" + }, + { + "name": "PP P388", + "title": "Clinical Trial Mgt" + }, + { + "name": "PP P389", + "title": "Research in Clin Pharm" + }, + { + "name": "PP P390", + "title": "Spec Problems/Clin Pharm" + }, + { + "name": "PP P406", + "title": "APPE-In-Patient" + }, + { + "name": "PP P407", + "title": "APPE-Ambulatory" + }, + { + "name": "PP P408", + "title": "APPE-Community" + }, + { + "name": "PP P409", + "title": "APPE-Institutional" + }, + { + "name": "PP P410", + "title": "APPE-Elective" + }, + { + "name": "PP P411", + "title": "APPE-Elective" + }, + { + "name": "PP P412", + "title": "APPE-Elective" + }, + { + "name": "QARA 5000", + "title": "Special Topics in Regulatory Affairs and Quality Assurance" + }, + { + "name": "QARA 5401", + "title": "Fundamentals of Pharmacology and Pharmacokinetics" + }, + { + "name": "QARA 5408", + "title": "Pharmacoeconomics" + }, + { + "name": "QARA 5451", + "title": "Statistical Quality Control" + }, + { + "name": "QARA 5458", + "title": "Global Biopharmaceutical Industry" + }, + { + "name": "QARA 5459", + "title": "Drug Development" + }, + { + "name": "QARA 5468", + "title": "Validation of Facilities, Utilities and Equipment (FUE)" + }, + { + "name": "QARA 5469", + "title": "Pharmaceutical Laboratory Quality Systems and Operations" + }, + { + "name": "QARA 5471", + "title": "Biotechnology: Bioprocess Basics" + }, + { + "name": "QARA 5472", + "title": "Pharmaceutical Marketing" + }, + { + "name": "QARA 5473", + "title": "Generic Drug Regulation (ANDAs)" + }, + { + "name": "QARA 5474", + "title": "Process Validation" + }, + { + "name": "QARA 5475", + "title": "Pharmaceutical Biotechnology" + }, + { + "name": "QARA 5476", + "title": "Good Laboratory Practices" + }, + { + "name": "QARA 5477", + "title": "Good Manufacturing Practices" + }, + { + "name": "QARA 5478", + "title": "High Purity Water Systems" + }, + { + "name": "QARA 5479", + "title": "Advanced Good Manufacturing Practices - Defining \"c\"" + }, + { + "name": "QARA 5491", + "title": "Pre-Approval Inspections" + }, + { + "name": "QARA 5492", + "title": "Production of Sterile Parenterals" + }, + { + "name": "QARA 5493", + "title": "Sterilization Processes" + }, + { + "name": "QARA 5494", + "title": "Quality Audit" + }, + { + "name": "QARA 5495", + "title": "Investigational New Drug/New Drug Application Submissions" + }, + { + "name": "QARA 5496", + "title": "Regulation of Medical Devices: Compliance" + }, + { + "name": "QARA 5497", + "title": "Statistics for Clinical Trials" + }, + { + "name": "QARA 5498", + "title": "Computerized System Validation" + }, + { + "name": "QARA 5499", + "title": "Drug Dosage Forms" + }, + { + "name": "QARA 5502", + "title": "Regulation of Medical Devices: Submissions" + }, + { + "name": "QARA 5503", + "title": "Design Controls for Medical Devices and Combination Products" + }, + { + "name": "QARA 5505", + "title": "Global Regulation of Medical Devices" + }, + { + "name": "QARA 5506", + "title": "Environmental Law and Regulation (EPA)" + }, + { + "name": "QARA 5507", + "title": "Regulation of Non-Prescription Healthcare Products" + }, + { + "name": "QARA 5508", + "title": "Good Pharmacovigilance Operations" + }, + { + "name": "QARA 5511", + "title": "Advanced Audit Workshop of Quality Systems" + }, + { + "name": "QARA 5512", + "title": "Microbiological Concepts in Pharmaceutical Manufacturing" + }, + { + "name": "QARA 5513", + "title": "Active Pharmaceutical Ingredients (APIs)" + }, + { + "name": "QARA 5514", + "title": "Regulatory Electronic Submissions" + }, + { + "name": "QARA 5515", + "title": "Biologics/Biosimilars: A Regulatory Overview" + }, + { + "name": "QARA 5516", + "title": "Cleaning Validation" + }, + { + "name": "QARA 5517", + "title": "Quant Methods-Benefit/Risk" + }, + { + "name": "QARA 5518", + "title": "Regulatory Issues in Pharmacogenomics" + }, + { + "name": "QARA 5532", + "title": "Global Labeling Regulation: Principles and Practices" + }, + { + "name": "QARA 5533", + "title": "Requirements for Product Labeling and Advertising" + }, + { + "name": "QARA 5534", + "title": "Regulatory Aspects of Biomedical/Technical Communication" + }, + { + "name": "QARA 5535", + "title": "Advanced Topics in Labeling Development" + }, + { + "name": "QARA 5536", + "title": "Good Clinical Practices" + }, + { + "name": "QARA 5537", + "title": "Clinical Trial Management" + }, + { + "name": "QARA 5538", + "title": "Clinical Drug Safety and Pharmacovigilance" + }, + { + "name": "QARA 5539", + "title": "Global Clinical Drug Development" + }, + { + "name": "QARA 5541", + "title": "Pharmaceutical Packaging: Technology and Regulation" + }, + { + "name": "QARA 5543", + "title": "Good Distribution Practices" + }, + { + "name": "QARA 5544", + "title": "Regulatory Intelligence" + }, + { + "name": "QARA 5545", + "title": "Post Approval Changes (PAC)" + }, + { + "name": "QARA 5546", + "title": "Global Pharmaceutical Excipient Regulation" + }, + { + "name": "QARA 5547", + "title": "Project Management for Clinical Trials" + }, + { + "name": "QARA 5548", + "title": "Risk Management of Pharmaceutical and Medical Devices" + }, + { + "name": "QARA 5571", + "title": "Post-Marketing Safety Surveillance" + }, + { + "name": "QARA 5572", + "title": "Vaccines: Regulatory Affairs and Quality Assurance Issues" + }, + { + "name": "QARA 5573", + "title": "Pharmacoepidemiology" + }, + { + "name": "QARA 5574", + "title": "Pharmaceutical Quality Management Systems" + }, + { + "name": "QARA 5575", + "title": "Regulatory Sciences: Managing the Guidelines to Quality" + }, + { + "name": "QARA 5576", + "title": "Global CMC Issues and Regulatory Dossier" + }, + { + "name": "QARA 5577", + "title": "Global CMC Regulatory Compliance for Biopharmaceuticals and Other Biologics" + }, + { + "name": "QARA 5578", + "title": "Benefit Risk Management and Safety Signaling of Healthcare Products" + }, + { + "name": "QARA 5579", + "title": "Regulatory and Legal Basis of Pharmacovigilance" + }, + { + "name": "QARA 5591", + "title": "Global Regulatory Affairs" + }, + { + "name": "QARA 5592", + "title": "Food and Drug Law" + }, + { + "name": "QARA 5594", + "title": "Regulation of Dietary Supplements and Functional Foods" + }, + { + "name": "QARA 5595", + "title": "Food Law" + }, + { + "name": "QARA 5596", + "title": "Food Labeling and Regulatory Affairs" + }, + { + "name": "QARA 5597", + "title": "Food Good Manufacturing Processes" + }, + { + "name": "QARA 5598", + "title": "Regulatory and Safety Requirements for Developing New Innovative Food Ingredients" + }, + { + "name": "QARA 5599", + "title": "Clinical Aspects of Pharmaceutical Medicine" + }, + { + "name": "QARA 5601", + "title": "Industry Interactions with FDA/Health Authorities" + }, + { + "name": "QARA 5602", + "title": "Clinical Aspects of Pharmaceutical Medicine II" + }, + { + "name": "QARA 5605", + "title": "Advanced Topics in Food and Drug Law" + }, + { + "name": "QARA 5606", + "title": "Regulatory Strategy: Discovery to Approval" + }, + { + "name": "QARA 5611", + "title": "Regulation of Advertising and Promotions" + }, + { + "name": "QARA 5612", + "title": "Bioethics for Pharmaceutical Professionals" + }, + { + "name": "QARA 5615", + "title": "Project Management for Pharmaceutical Professionals" + }, + { + "name": "QARA 5618", + "title": "Clinical Data Management (CDM)" + }, + { + "name": "QARA 5621", + "title": "Regulatory Bioanalysis" + }, + { + "name": "QARA 5622", + "title": "Unit Operations" + }, + { + "name": "QARA 5625", + "title": "Process Analytical Technology (PAT)" + }, + { + "name": "QARA 5627", + "title": "Statistical Design of Experiments (DOE)" + }, + { + "name": "QARA 5629", + "title": "Process Monitoring" + }, + { + "name": "QARA 5650", + "title": "Special Topics in Regulatory Affairs and Quality Assurance" + }, + { + "name": "QARA 5655", + "title": "Analytical Chemistry in Pharmaceutical Laboratories" + }, + { + "name": "QARA 8001", + "title": "Principles of Drug Action/PK" + }, + { + "name": "QARA 8002", + "title": "Pharmaceutical Analysis" + }, + { + "name": "QARA 8003", + "title": "Pharmaceutical Manufacturing I: Preformulation/Formulation" + }, + { + "name": "QARA 8004", + "title": "Pharmaceutical Manufacturing II: Solid Dosage Forms" + }, + { + "name": "QARA 8006", + "title": "Physical Pharmacy I" + }, + { + "name": "QARA 8007", + "title": "Applied Biopharmaceutics" + }, + { + "name": "PHIL 0824", + "title": "Landscape of American Thought" + }, + { + "name": "PHIL 0839", + "title": "Philosophy of the Human" + }, + { + "name": "PHIL 0847", + "title": "The Meaning of the Arts" + }, + { + "name": "PHIL 0859", + "title": "The Making of American Society: Melting Pot or Culture Wars?" + }, + { + "name": "PHIL 0863", + "title": "Religion in the World" + }, + { + "name": "PHIL 0924", + "title": "Honors Landscape of American Thought" + }, + { + "name": "PHIL 0939", + "title": "Honors Philosophy of the Human" + }, + { + "name": "PHIL 0947", + "title": "Honors The Meaning of the Arts" + }, + { + "name": "PHIL 1001", + "title": "Philosophical Challenges to the Individual" + }, + { + "name": "PHIL 1055", + "title": "Critical Thinking" + }, + { + "name": "PHIL 1061", + "title": "Art and Society" + }, + { + "name": "PHIL 1062", + "title": "Morality and the Law" + }, + { + "name": "PHIL 1063", + "title": "American Thinkers" + }, + { + "name": "PHIL 1066", + "title": "Introduction to Logic" + }, + { + "name": "PHIL 1076", + "title": "Philosophy East and West" + }, + { + "name": "PHIL 1077", + "title": "Science in Context" + }, + { + "name": "PHIL 1101", + "title": "Introduction to Philosophy" + }, + { + "name": "PHIL 1196", + "title": "Introduction to Philosophy" + }, + { + "name": "PHIL 1861", + "title": "Art and Society" + }, + { + "name": "PHIL 1955", + "title": "Honors Critical Thinking" + }, + { + "name": "PHIL 1962", + "title": "Honors Morality & the Law" + }, + { + "name": "PHIL 1966", + "title": "Honors Introduction to Logic" + }, + { + "name": "PHIL 1977", + "title": "Honors Science in Context" + }, + { + "name": "PHIL 2100", + "title": "Special Topics" + }, + { + "name": "PHIL 2121", + "title": "Introduction to Ethical Theory" + }, + { + "name": "PHIL 2125", + "title": "Philosophy of African-American Experiences" + }, + { + "name": "PHIL 2126", + "title": "Contemporary Social Philosophy" + }, + { + "name": "PHIL 2131", + "title": "Introduction to Aesthetics" + }, + { + "name": "PHIL 2141", + "title": "Philosophy of Biology" + }, + { + "name": "PHIL 2143", + "title": "Introduction to Theory of Knowledge" + }, + { + "name": "PHIL 2144", + "title": "Introduction to the Philosophy of Mind " + }, + { + "name": "PHIL 2152", + "title": "Introduction to Feminist Philosophy" + }, + { + "name": "PHIL 2154", + "title": "Political Philosophy " + }, + { + "name": "PHIL 2157", + "title": "Environmental Ethics" + }, + { + "name": "PHIL 2161", + "title": "History of Philosophy: Greek" + }, + { + "name": "PHIL 2165", + "title": "Hume, Marx, Darwin, and Freud " + }, + { + "name": "PHIL 2172", + "title": "History of Philosophy: Modern " + }, + { + "name": "PHIL 2196", + "title": "Perspectives on Science and Mathematics" + }, + { + "name": "PHIL 2596", + "title": "Philosophical Perspectives on the Environment" + }, + { + "name": "PHIL 2921", + "title": "Honors Introduction to Ethical Theory" + }, + { + "name": "PHIL 2925", + "title": "Honors Philosophy of African-American Experiences" + }, + { + "name": "PHIL 2931", + "title": "Honors Introduction to Aesthetics" + }, + { + "name": "PHIL 2941", + "title": "Honors Philosophy of Biology" + }, + { + "name": "PHIL 2957", + "title": "Honors Environmental Ethics" + }, + { + "name": "PHIL 3075", + "title": "Pre-Law Seminar" + }, + { + "name": "PHIL 3085", + "title": "Pre-Law Internship" + }, + { + "name": "PHIL 3116", + "title": "Development of Western Cosmology" + }, + { + "name": "PHIL 3123", + "title": "The Ethics of War and Peace" + }, + { + "name": "PHIL 3133", + "title": "Philosophy of Education" + }, + { + "name": "PHIL 3168", + "title": "Themes in Existentialism" + }, + { + "name": "PHIL 3210", + "title": "Special Topics in Philosophy" + }, + { + "name": "PHIL 3211", + "title": "Intermediate Logic " + }, + { + "name": "PHIL 3216", + "title": "Philosophy of Science " + }, + { + "name": "PHIL 3217", + "title": "Feminist Epistemology and Philosophy of Science " + }, + { + "name": "PHIL 3218", + "title": "Philosophy of Medicine" + }, + { + "name": "PHIL 3220", + "title": "Special Topics in Philosophy" + }, + { + "name": "PHIL 3222", + "title": "Contemporary Ethical Theory" + }, + { + "name": "PHIL 3223", + "title": "Feminist Ethics and Political Philosophy" + }, + { + "name": "PHIL 3225", + "title": "Good & Bad, Right & Wrong" + }, + { + "name": "PHIL 3226", + "title": "Classics in Moral Philosophy" + }, + { + "name": "PHIL 3232", + "title": "History of Aesthetics" + }, + { + "name": "PHIL 3234", + "title": "Philosophy of Music" + }, + { + "name": "PHIL 3235", + "title": "Classics in Moral Philosophy" + }, + { + "name": "PHIL 3240", + "title": "Special Topics" + }, + { + "name": "PHIL 3243", + "title": "Philosophy of Law " + }, + { + "name": "PHIL 3245", + "title": "Philosophical Psychology" + }, + { + "name": "PHIL 3249", + "title": "Ethics in Medicine " + }, + { + "name": "PHIL 3280", + "title": "Special Topics" + }, + { + "name": "PHIL 3282", + "title": "Undergraduate Tutorial" + }, + { + "name": "PHIL 3283", + "title": "Undergraduate Tutorial" + }, + { + "name": "PHIL 3910", + "title": "Honors Special Topics in Philosophy" + }, + { + "name": "PHIL 3949", + "title": "Honors Ethics in Medicine" + }, + { + "name": "PHIL 3968", + "title": "Honors Themes in Existentialism" + }, + { + "name": "PHIL 4221", + "title": "Social and Political Philosophy" + }, + { + "name": "PHIL 4225", + "title": "Metaethics" + }, + { + "name": "PHIL 4229", + "title": "Philosophy in Literature" + }, + { + "name": "PHIL 4233", + "title": "Problems in Aesthetics" + }, + { + "name": "PHIL 4240", + "title": "Topics in the Philosophy of Psychology" + }, + { + "name": "PHIL 4241", + "title": "Theory of Knowledge" + }, + { + "name": "PHIL 4242", + "title": "Metaphysics" + }, + { + "name": "PHIL 4244", + "title": "Philosophy of Mind" + }, + { + "name": "PHIL 4251", + "title": "Philosophy of Language" + }, + { + "name": "PHIL 4253", + "title": "Philosophy of History" + }, + { + "name": "PHIL 4268", + "title": "Indian Philosophy: An Introduction" + }, + { + "name": "PHIL 4269", + "title": "Contemporary British and American Philosophy" + }, + { + "name": "PHIL 4271", + "title": "19th Century Philosophy" + }, + { + "name": "PHIL 4273", + "title": "Greek Philosophy" + }, + { + "name": "PHIL 4274", + "title": "Pragmatism and American Thought" + }, + { + "name": "PHIL 4275", + "title": "British Empiricism" + }, + { + "name": "PHIL 4276", + "title": "Contemporary Continental Philosophy" + }, + { + "name": "PHIL 4277", + "title": "Continental Rationalism" + }, + { + "name": "PHIL 4278", + "title": "Philosophy of Culture" + }, + { + "name": "PHIL 4279", + "title": "Kant " + }, + { + "name": "PHIL 4282", + "title": "Undergraduate Tutorial" + }, + { + "name": "PHIL 4297", + "title": "Pre-Law Tutorial" + }, + { + "name": "PHIL 4298", + "title": "Senior Seminar" + }, + { + "name": "PHIL 4951", + "title": "Honors Philosophy of Language" + }, + { + "name": "PHIL 4999", + "title": "Honors Senior Thesis" + }, + { + "name": "PHIL 5210", + "title": "Special Topics in Philosophy" + }, + { + "name": "PHIL 5211", + "title": "Intermediate Logic" + }, + { + "name": "PHIL 5216", + "title": "Philosophy of Science" + }, + { + "name": "PHIL 5217", + "title": "Feminist Epistemology and the Philosophy of Science" + }, + { + "name": "PHIL 5218", + "title": "Philosophy of Medicine" + }, + { + "name": "PHIL 5220", + "title": "Special Topics in Philosophy" + }, + { + "name": "PHIL 5221", + "title": "Social and Political Philosophy" + }, + { + "name": "PHIL 5222", + "title": "Contemporary Ethical Theory" + }, + { + "name": "PHIL 5223", + "title": "Feminist Ethics and Political Philosophy" + }, + { + "name": "PHIL 5225", + "title": "Metaethics" + }, + { + "name": "PHIL 5226", + "title": "Classics in Moral Philosophy" + }, + { + "name": "PHIL 5229", + "title": "Philosophy in Literature" + }, + { + "name": "PHIL 5230", + "title": "Special Topics" + }, + { + "name": "PHIL 5232", + "title": "History of Aesthetics" + }, + { + "name": "PHIL 5233", + "title": "Problems in Aesthetics" + }, + { + "name": "PHIL 5234", + "title": "Philosophy of Music" + }, + { + "name": "PHIL 5235", + "title": "Classics in Moral Philosophy II" + }, + { + "name": "PHIL 5240", + "title": "Special Topics" + }, + { + "name": "PHIL 5241", + "title": "Theory of Knowledge" + }, + { + "name": "PHIL 5242", + "title": "Metaphysics" + }, + { + "name": "PHIL 5243", + "title": "Philosophy of Law" + }, + { + "name": "PHIL 5244", + "title": "Philosophy of the Mind" + }, + { + "name": "PHIL 5249", + "title": "Ethics in Medicine" + }, + { + "name": "PHIL 5250", + "title": "Topics in the Philosophy of Psychology" + }, + { + "name": "PHIL 5251", + "title": "Philosophy of Language" + }, + { + "name": "PHIL 5253", + "title": "Philosophy of History" + }, + { + "name": "PHIL 5268", + "title": "Indian Philosophy: An Introduction" + }, + { + "name": "PHIL 5269", + "title": "Contemporary British and American Philosophy" + }, + { + "name": "PHIL 5271", + "title": "Nineteenth-Century Philosophy" + }, + { + "name": "PHIL 5272", + "title": "Philosophy of Culture" + }, + { + "name": "PHIL 5273", + "title": "Greek Philosophy" + }, + { + "name": "PHIL 5274", + "title": "Pragmatism and American Thought" + }, + { + "name": "PHIL 5275", + "title": "British Empiricism" + }, + { + "name": "PHIL 5276", + "title": "Contemporary Continental Philosophy" + }, + { + "name": "PHIL 5277", + "title": "Africana Philosophy" + }, + { + "name": "PHIL 5278", + "title": "Continental Rationalism" + }, + { + "name": "PHIL 5279", + "title": "Kant" + }, + { + "name": "PHIL 8601", + "title": "Pro-Seminar in 20th-Century Philosophy" + }, + { + "name": "PHIL 8602", + "title": "Seminar in Greek Philosophy" + }, + { + "name": "PHIL 8611", + "title": "Seminar in Continental Rationalism" + }, + { + "name": "PHIL 8616", + "title": "Seminar in British Empiricism" + }, + { + "name": "PHIL 8621", + "title": "Seminar in Kant" + }, + { + "name": "PHIL 8626", + "title": "Seminar in Nineteenth-Century Philosophy" + }, + { + "name": "PHIL 8631", + "title": "Seminar in Contemporary Continental Philosophy" + }, + { + "name": "PHIL 8636", + "title": "Seminar in Contemporary British and American Philosophy" + }, + { + "name": "PHIL 8641", + "title": "Seminar in American Philosophy" + }, + { + "name": "PHIL 8666", + "title": "Seminar in Philosophy of the Social Sciences" + }, + { + "name": "PHIL 8701", + "title": "Seminar in Aesthetics" + }, + { + "name": "PHIL 8704", + "title": "Seminar in Philosophy of Literary Criticism" + }, + { + "name": "PHIL 8712", + "title": "Seminar in Ethics" + }, + { + "name": "PHIL 8721", + "title": "Seminar in Social and Political Philosophy" + }, + { + "name": "PHIL 8731", + "title": "Seminar in the Philosophy of the Mind" + }, + { + "name": "PHIL 8741", + "title": "Seminar in Epistemology" + }, + { + "name": "PHIL 8746", + "title": "Seminar in Metaphysics" + }, + { + "name": "PHIL 8755", + "title": "Seminar in the Philosophy of Language" + }, + { + "name": "PHIL 9682", + "title": "Tutorial" + }, + { + "name": "PHIL 9782", + "title": "Tutorial" + }, + { + "name": "PHIL 9882", + "title": "Tutorial" + }, + { + "name": "PHIL 9982", + "title": "Tutorial" + }, + { + "name": "PHIL 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "PHIL 9996", + "title": "Master's Thesis Research" + }, + { + "name": "PHIL 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "PHIL 9999", + "title": "Dissertation Research" + }, + { + "name": "PHIL E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PHIL F000", + "title": "* See Statement Below" + }, + { + "name": "PHIL L000", + "title": "Elective LL" + }, + { + "name": "PHIL P000", + "title": "Elective P" + }, + { + "name": "PHIL U000", + "title": "Elective UL" + }, + { + "name": "PHOT 0822", + "title": "Human Behavior and the Photographic Image" + }, + { + "name": "PHOT 2401", + "title": "Introduction to Photography (Online Digital Course)" + }, + { + "name": "PHOT 2441", + "title": "Photo I: Digital" + }, + { + "name": "PHOT 2451", + "title": "Photo I: Digital" + }, + { + "name": "PHOT 2461", + "title": "Digital Imaging" + }, + { + "name": "PHOT 2811", + "title": "Art Photography: Digital" + }, + { + "name": "PHOT 2812", + "title": "Intermediate Art Photography: Digital" + }, + { + "name": "PHOT 2831", + "title": "Art Photography / Digital On-Line" + }, + { + "name": "PHOT 2961", + "title": "Honors Digital Imaging: Seeing Photographically" + }, + { + "name": "PHOT 3400", + "title": "Special Topics in Photography" + }, + { + "name": "PHOT 3401", + "title": "Color Photography I" + }, + { + "name": "PHOT 3402", + "title": "View Camera" + }, + { + "name": "PHOT 3411", + "title": "Digital Photography" + }, + { + "name": "PHOT 3412", + "title": "Darkroom Photography" + }, + { + "name": "PHOT 3413", + "title": "Photographic Lighting" + }, + { + "name": "PHOT 3414", + "title": "Darkroom Photography" + }, + { + "name": "PHOT 3421", + "title": "Digital Projects" + }, + { + "name": "PHOT 3422", + "title": "Contemporary Photography" + }, + { + "name": "PHOT 3431", + "title": "Color Photography I" + }, + { + "name": "PHOT 3432", + "title": "Color Photography II" + }, + { + "name": "PHOT 3441", + "title": "Advanced Photography Workshop" + }, + { + "name": "PHOT 3451", + "title": "Advanced Photography Workshop" + }, + { + "name": "PHOT 3461", + "title": "Photo Process Workshop" + }, + { + "name": "PHOT 3471", + "title": "Photo Process Workshop" + }, + { + "name": "PHOT 4196", + "title": "Senior Portfolio" + }, + { + "name": "PHOT 4441", + "title": "Senior Photography" + }, + { + "name": "PHOT 4496", + "title": "Senior Seminar in Photography" + }, + { + "name": "PHOT 8201", + "title": "Digital Projects" + }, + { + "name": "PHOT 8211", + "title": "Graduate Seminar in Photography" + }, + { + "name": "PHOT 8212", + "title": "Graduate Seminar in Photography II" + }, + { + "name": "PHOT 8222", + "title": "Contemporary Photography" + }, + { + "name": "PHOT 8253", + "title": "Graduate Photo Process Workshop" + }, + { + "name": "PHOT 8255", + "title": "Graduate Photo Workshop: Digital Photography" + }, + { + "name": "PHOT 8256", + "title": "Graduate Advanced Photo Workshop" + }, + { + "name": "PHOT 8283", + "title": "Graduate Projects in Photography I" + }, + { + "name": "PHOT 8284", + "title": "Graduate Projects in Photography II" + }, + { + "name": "PHOT 8413", + "title": "Photographic Lighting" + }, + { + "name": "PHOT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PHOT T000", + "title": "Elective" + }, + { + "name": "PHTH 8101", + "title": "Introduction to Physical Therapy" + }, + { + "name": "PHTH 8102", + "title": "Teaching, Learning, Group Dynamics" + }, + { + "name": "PHTH 8103", + "title": "Clinical Examination and Intervention Skills I" + }, + { + "name": "PHTH 8105", + "title": "Human Anatomy I" + }, + { + "name": "PHTH 8107", + "title": "Functional Biomechanics" + }, + { + "name": "PHTH 8109", + "title": "Human Physiology and Pathology I" + }, + { + "name": "PHTH 8111", + "title": "Clinical Examination and Intervention Skills II" + }, + { + "name": "PHTH 8113", + "title": "Evidence Based Practice I" + }, + { + "name": "PHTH 8114", + "title": "Neuroscience" + }, + { + "name": "PHTH 8115", + "title": "Human Physiology and Pathology II" + }, + { + "name": "PHTH 8116", + "title": "Motor Control and Learning" + }, + { + "name": "PHTH 8118", + "title": "Clinical Examination and Intervention Skills III" + }, + { + "name": "PHTH 8121", + "title": "Clinical Electrophysiology and Biophysical Agents" + }, + { + "name": "PHTH 8123", + "title": "Development Across the Lifespan" + }, + { + "name": "PHTH 8125", + "title": "Clinical Management of Musculoskeletal Conditions I" + }, + { + "name": "PHTH 8127", + "title": "Clinical Management of Neuromuscular Conditions I" + }, + { + "name": "PHTH 8129", + "title": "Psychosocial Aspects" + }, + { + "name": "PHTH 8131", + "title": "Clinical Management of Musculoskeletal Conditions II" + }, + { + "name": "PHTH 8133", + "title": "Clinical Management of Neuromuscular Conditions II" + }, + { + "name": "PHTH 8135", + "title": "Clinical Management of Cardiopulmonary Conditions" + }, + { + "name": "PHTH 8136", + "title": "Bioethics" + }, + { + "name": "PHTH 8137", + "title": "Evidence Based Practice II" + }, + { + "name": "PHTH 8138", + "title": "Management and Healthcare Systems" + }, + { + "name": "PHTH 8139", + "title": "Medical Diagnostics" + }, + { + "name": "PHTH 8141", + "title": "Clinical Management of Musculoskeletal Conditions III" + }, + { + "name": "PHTH 8143", + "title": "Management of the Medically Complex Patient" + }, + { + "name": "PHTH 8145", + "title": "Pharmacotherapeutics" + }, + { + "name": "PHTH 8146", + "title": "Clinical Management of Pediatrics" + }, + { + "name": "PHTH 8147", + "title": "Clinical Pain Sciences" + }, + { + "name": "PHTH 8148", + "title": "Assistive Technologies" + }, + { + "name": "PHTH 8150", + "title": "Elective - Special Topics" + }, + { + "name": "PHTH 8151", + "title": "Evidence Based Practice III" + }, + { + "name": "PHTH 8152", + "title": "Elective - Musculoskeletal" + }, + { + "name": "PHTH 8153", + "title": "Elective - Vestibular" + }, + { + "name": "PHTH 8154", + "title": "Elective - Clinical Simulation" + }, + { + "name": "PHTH 8155", + "title": "Elective - Pediatrics" + }, + { + "name": "PHTH 8156", + "title": "Elective - Geriatrics" + }, + { + "name": "PHTH 8160", + "title": "Special Topics - Integrated Learning Experience" + }, + { + "name": "PHTH 8161", + "title": "Integrated Clinical Experience 1" + }, + { + "name": "PHTH 8162", + "title": "Integrated Clinical Experience 2" + }, + { + "name": "PHTH 8163", + "title": "Integrated Clinical Experience 3" + }, + { + "name": "PHTH 8164", + "title": "Integrated Clinical Experience 4" + }, + { + "name": "PHTH 8165", + "title": "Integrated Clinical Experience 5" + }, + { + "name": "PHTH 8502", + "title": "Human Anatomy I" + }, + { + "name": "PHTH 8503", + "title": "Human Anatomy II" + }, + { + "name": "PHTH 8512", + "title": "Human Physiology" + }, + { + "name": "PHTH 8513", + "title": "Movement Science I" + }, + { + "name": "PHTH 8514", + "title": "Clinical Decision Making" + }, + { + "name": "PHTH 8516", + "title": "Introduction to Physical Therapy" + }, + { + "name": "PHTH 8517", + "title": "Clinical Examination & Intervention Skills I" + }, + { + "name": "PHTH 8518", + "title": "Psychosocial Aspects" + }, + { + "name": "PHTH 8521", + "title": "Neuroscience" + }, + { + "name": "PHTH 8522", + "title": "Rehabilitative Pathophysiology" + }, + { + "name": "PHTH 8523", + "title": "Movement Science II" + }, + { + "name": "PHTH 8524", + "title": "Clinical Examination & Intervention Skills II" + }, + { + "name": "PHTH 8525", + "title": "Clinical Electroneurophysiology" + }, + { + "name": "PHTH 8528", + "title": "Critical Inquiry I" + }, + { + "name": "PHTH 8529", + "title": "Exercise" + }, + { + "name": "PHTH 8531", + "title": "Pro Bono Clinical Practice" + }, + { + "name": "PHTH 8532", + "title": "Clinical Management of Musculoskeletal Conditions I" + }, + { + "name": "PHTH 8533", + "title": "Movement Science III" + }, + { + "name": "PHTH 8534", + "title": "Clinical Management of Neuromuscular Conditions I" + }, + { + "name": "PHTH 8535", + "title": "Clinical Management of Cardiopulmonary Conditions" + }, + { + "name": "PHTH 8536", + "title": "Teaching Learning & Group Dynamics" + }, + { + "name": "PHTH 8542", + "title": "Clinical Management of Musculoskeletal Conditions II" + }, + { + "name": "PHTH 8546", + "title": "Bioethics" + }, + { + "name": "PHTH 8547", + "title": "Management and Health Care Systems" + }, + { + "name": "PHTH 8548", + "title": "Critical Inquiry II" + }, + { + "name": "PHTH 8550", + "title": "Special Topics in Physical Therapy" + }, + { + "name": "PHTH 8551", + "title": "Medical Diagnostics" + }, + { + "name": "PHTH 8552", + "title": "Clinical Management of Musculoskeletal Conditions III" + }, + { + "name": "PHTH 8553", + "title": "Clinical Medicine & Pharmacotherapeutics" + }, + { + "name": "PHTH 8554", + "title": "Clinical Management of Neuromuscular Conditions II" + }, + { + "name": "PHTH 8555", + "title": "Assistive Technologies" + }, + { + "name": "PHTH 8557", + "title": "Management of Physical Therapy Practices" + }, + { + "name": "PHTH 8558", + "title": "Evidence-Based Practice I" + }, + { + "name": "PHTH 8559", + "title": "Elective - Clinical Specialty" + }, + { + "name": "PHTH 8568", + "title": "Evidence-Based Practice II " + }, + { + "name": "PHTH 8571", + "title": "Phys Therapy Diagnostics" + }, + { + "name": "PHTH 8572", + "title": "Clinical Pharmacology" + }, + { + "name": "PHTH 8573", + "title": "Diagnostic Imaging" + }, + { + "name": "PHTH 8574", + "title": "Ethics" + }, + { + "name": "PHTH 8575", + "title": "Motor Contrl & Human Mov" + }, + { + "name": "PHTH 8576", + "title": "Clinical Decision Making" + }, + { + "name": "PHTH 8577", + "title": "Health Care System" + }, + { + "name": "PHTH 8578", + "title": "Outcome Meas Epidemiolog" + }, + { + "name": "PHTH 8579", + "title": "Teaching and Learning" + }, + { + "name": "PHTH 8581", + "title": "Mslsklt Mgt I Residency" + }, + { + "name": "PHTH 8582", + "title": "Mslsklt Mgt II Residency" + }, + { + "name": "PHTH 9085", + "title": "Mentorship I Residency" + }, + { + "name": "PHTH 9086", + "title": "Mentorship II Residency" + }, + { + "name": "PHTH 9185", + "title": "Clinical Experience 1" + }, + { + "name": "PHTH 9285", + "title": "Clinical Experience 2" + }, + { + "name": "PHTH 9385", + "title": "Clinical Experience 3" + }, + { + "name": "PHTH 9585", + "title": "Clinical Internship I" + }, + { + "name": "PHTH 9586", + "title": "Clinical Internship II" + }, + { + "name": "PHTH 9620", + "title": "Human Movement Science I: Neural Factors" + }, + { + "name": "PHTH 9621", + "title": "Human Movement Science III: Cognition and Learning" + }, + { + "name": "PHTH 9622", + "title": "Instrumentation and Motion Analysis" + }, + { + "name": "PHTH 9623", + "title": "Atypical Human Movement" + }, + { + "name": "PHTH 9624", + "title": "Human Movement Science II: Mechanics and Models" + }, + { + "name": "PHTH 9625", + "title": "Clinical Decision Making" + }, + { + "name": "PHTH 9626", + "title": "Musculoskeletal Impairment: Evidence for Examination and Intervention Strategies" + }, + { + "name": "PHTH 9627", + "title": "Movement Sci & Cognitive" + }, + { + "name": "PHTH 9645", + "title": "Advanced Musculoskeletal Anatomy" + }, + { + "name": "PHTH 9651", + "title": "Theoretical Foundations of Physical Therapy" + }, + { + "name": "PHTH 9653", + "title": "Research Strategies" + }, + { + "name": "PHTH 9654", + "title": "Laboratory Rotations and Seminar in Human Movement Science" + }, + { + "name": "PHTH 9655", + "title": "Qualitative Research Strategies for Health Care" + }, + { + "name": "PHTH 9673", + "title": "Curricular Design and Teaching in the Health Professions" + }, + { + "name": "PHTH 9682", + "title": "Independent Study" + }, + { + "name": "PHTH 9685", + "title": "Clinical Internship III" + }, + { + "name": "PHTH 9686", + "title": "Clinical Internship IV" + }, + { + "name": "PHTH 9687", + "title": "Clinical Internship V " + }, + { + "name": "PHTH 9774", + "title": "Administration of Health Professions Academic Programs" + }, + { + "name": "PHTH 9787", + "title": "Teaching Practicum" + }, + { + "name": "PHTH 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "PHTH 9998", + "title": "Dissertation Proposal" + }, + { + "name": "PHTH 9999", + "title": "Dissertation Research and Colloquium" + }, + { + "name": "PHTH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PHTH T000", + "title": "Elective" + }, + { + "name": "PA 8101", + "title": "Physician Assistant Practice I" + }, + { + "name": "PA 8102", + "title": "Patient Assessment I" + }, + { + "name": "PA 8103", + "title": "Human Gross Anatomy" + }, + { + "name": "PA 8104", + "title": "Introduction to Scientific Inquiry" + }, + { + "name": "PA 8105", + "title": "Foundations of Medical Sciences I" + }, + { + "name": "PA 8106", + "title": "Introduction to Epidemiology and Biostatistics" + }, + { + "name": "PA 8201", + "title": "Physician Assistant Practice II" + }, + { + "name": "PA 8202", + "title": "Patient Assessment II" + }, + { + "name": "PA 8203", + "title": "Foundations of Medical Sciences II" + }, + { + "name": "PA 8204", + "title": "Fundamentals of Hematology" + }, + { + "name": "PA 8205", + "title": "Fundamentals of Cardiology" + }, + { + "name": "PA 8206", + "title": "Fundamentals of Pulmonology" + }, + { + "name": "PA 8207", + "title": "Fundamentals of Gastroenterology" + }, + { + "name": "PA 8301", + "title": "Physician Assistant Practice III" + }, + { + "name": "PA 8302", + "title": "Patient Assessment III" + }, + { + "name": "PA 8303", + "title": "Fundamentals of Nephrology" + }, + { + "name": "PA 8304", + "title": "Fundamentals of Endocrinology" + }, + { + "name": "PA 8305", + "title": "Fundamentals of Ears/Eyes/Nose/Throat (EENT)" + }, + { + "name": "PA 8306", + "title": "Fundamentals of Neurology" + }, + { + "name": "PA 8307", + "title": "Fundamentals of Rheumatology and Orthopedics" + }, + { + "name": "PA 8308", + "title": "Fundamentals of Dermatology" + }, + { + "name": "PA 8309", + "title": "Essentials of Psychiatry" + }, + { + "name": "PA 8401", + "title": "Physician Assistant Practice IV" + }, + { + "name": "PA 8402", + "title": "Patient Assessment IV" + }, + { + "name": "PA 8403", + "title": "Bioethics" + }, + { + "name": "PA 8404", + "title": "Essentials of Men's and Women's Health" + }, + { + "name": "PA 8405", + "title": "Essentials Across the Lifespan" + }, + { + "name": "PA 8406", + "title": "Essentials of Surgery and Emergency Medicine" + }, + { + "name": "PA 9085", + "title": "Family Medicine Clerkship" + }, + { + "name": "PA 9086", + "title": "Elective Clerkship in Medicine Subspecialties I" + }, + { + "name": "PA 9087", + "title": "Elective Clerkship in Urology" + }, + { + "name": "PA 9182", + "title": "Independent Study" + }, + { + "name": "PA 9185", + "title": "Internal Medicine Clerkship" + }, + { + "name": "PA 9186", + "title": "Elective Clerkship in Neurology" + }, + { + "name": "PA 9187", + "title": "Elective Clerkship in Medicine Subspecialties II" + }, + { + "name": "PA 9285", + "title": "Emergency Medicine Clerkship" + }, + { + "name": "PA 9286", + "title": "Elective Clerkship in Neurosurgery" + }, + { + "name": "PA 9287", + "title": "Elective Clerkship in Surgical Subspecialties II" + }, + { + "name": "PA 9385", + "title": "Obstetrics/Gynecology Clerkship" + }, + { + "name": "PA 9386", + "title": "Elective Clerkship in Ophthalmology" + }, + { + "name": "PA 9485", + "title": "Surgery Clerkship" + }, + { + "name": "PA 9486", + "title": "Elective Clerkship in Orthopaedic Surgery and Sports Medicine" + }, + { + "name": "PA 9585", + "title": "Behavioral Medicine Clerkship" + }, + { + "name": "PA 9586", + "title": "Elective Clerkship in Otolaryngology" + }, + { + "name": "PA 9685", + "title": "Pediatric Medicine Clerkship" + }, + { + "name": "PA 9686", + "title": "Elective Clerkship in Physical Medicine and Rehabilitation" + }, + { + "name": "PA 9785", + "title": "Elective Clerkship I" + }, + { + "name": "PA 9786", + "title": "Elective Clerkship in Radiology" + }, + { + "name": "PA 9885", + "title": "Elective Clerkship II" + }, + { + "name": "PA 9886", + "title": "Elective Clerkship in Surgical Subspecialties I" + }, + { + "name": "PA 9985", + "title": "Elective Clerkship in Dermatology" + }, + { + "name": "PA 9986", + "title": "Elective Clerkship in Thoracic Medicine and Surgery" + }, + { + "name": "PA 9991", + "title": "Scholarly Clinical Research I" + }, + { + "name": "PA 9993", + "title": "Comprehensive Review" + }, + { + "name": "PA 9995", + "title": "Scholarly Clinical Research II" + }, + { + "name": "PHYS 0834", + "title": "Exploring the Cosmos" + }, + { + "name": "PHYS 0839", + "title": "Powering the Future" + }, + { + "name": "PHYS 0847", + "title": "How Things Work: The Physics of Everyday Life" + }, + { + "name": "PHYS 0872", + "title": "The Science of Sound" + }, + { + "name": "PHYS 0939", + "title": "Honors Powering the Future" + }, + { + "name": "PHYS 1001", + "title": "Physics: Matter and Motion" + }, + { + "name": "PHYS 1004", + "title": "Introduction to Astronomy" + }, + { + "name": "PHYS 1005", + "title": "Light, Art, and Nature" + }, + { + "name": "PHYS 1006", + "title": "Medical Physics" + }, + { + "name": "PHYS 1007", + "title": "Science & Science Fiction in Film" + }, + { + "name": "PHYS 1008", + "title": "Physics Seminar I" + }, + { + "name": "PHYS 1021", + "title": "Introduction to General Physics I" + }, + { + "name": "PHYS 1022", + "title": "Introduction to General Physics II" + }, + { + "name": "PHYS 1031", + "title": "Basic Core Physics I" + }, + { + "name": "PHYS 1032", + "title": "Basic Core Physics II" + }, + { + "name": "PHYS 1061", + "title": "Elementary Classical Physics I" + }, + { + "name": "PHYS 1062", + "title": "Elementary Classical Physics II" + }, + { + "name": "PHYS 1083", + "title": "Directed Reading/Study" + }, + { + "name": "PHYS 1961", + "title": "Honors Elementary Classical Physics I" + }, + { + "name": "PHYS 1962", + "title": "Honors Elementary Classical Physics II" + }, + { + "name": "PHYS 2021", + "title": "General Physics I" + }, + { + "name": "PHYS 2022", + "title": "General Physics II" + }, + { + "name": "PHYS 2063", + "title": "Wave Physics" + }, + { + "name": "PHYS 2083", + "title": "Directed Reading/Study" + }, + { + "name": "PHYS 2101", + "title": "Classical Mechanics" + }, + { + "name": "PHYS 2502", + "title": "Mathematical Physics" + }, + { + "name": "PHYS 2511", + "title": "Scientific Computing I" + }, + { + "name": "PHYS 2796", + "title": "Introduction to Modern Physics" + }, + { + "name": "PHYS 2921", + "title": "Honors General Physics I" + }, + { + "name": "PHYS 2922", + "title": "Honors General Physics II" + }, + { + "name": "PHYS 3000", + "title": "Contemporary Physics" + }, + { + "name": "PHYS 3083", + "title": "Directed Reading/Study" + }, + { + "name": "PHYS 3091", + "title": "Research Methods" + }, + { + "name": "PHYS 3101", + "title": "Analytical Mechanics" + }, + { + "name": "PHYS 3301", + "title": "Electricity and Magnetism" + }, + { + "name": "PHYS 3302", + "title": "Classical Electromagnetism" + }, + { + "name": "PHYS 3511", + "title": "Scientific Computing II" + }, + { + "name": "PHYS 3701", + "title": "Introduction to Quantum Mechanics I" + }, + { + "name": "PHYS 4000", + "title": "Special Topics in Physics" + }, + { + "name": "PHYS 4091", + "title": "Undergraduate Research" + }, + { + "name": "PHYS 4101", + "title": "Thermal Physics" + }, + { + "name": "PHYS 4301", + "title": "Electronics" + }, + { + "name": "PHYS 4302", + "title": "Optics" + }, + { + "name": "PHYS 4511", + "title": "Scientific Computing III" + }, + { + "name": "PHYS 4701", + "title": "Introduction to Solid State Physics" + }, + { + "name": "PHYS 4702", + "title": "Introduction to Quantum Mechanics II" + }, + { + "name": "PHYS 4796", + "title": "Experimental Physics" + }, + { + "name": "PHYS 5000", + "title": "Topical Seminar" + }, + { + "name": "PHYS 5001", + "title": "Introduction to Quantum Computing" + }, + { + "name": "PHYS 5002", + "title": "Physics Research and Ethics" + }, + { + "name": "PHYS 5101", + "title": "Analytical Mechanics" + }, + { + "name": "PHYS 5301", + "title": "Electromagnetic Theory" + }, + { + "name": "PHYS 5302", + "title": "Advanced Electromagnetic Theory" + }, + { + "name": "PHYS 5501", + "title": "Mathematical Physics" + }, + { + "name": "PHYS 5502", + "title": "Computational and Mathematical Physics" + }, + { + "name": "PHYS 5701", + "title": "Quantum Mechanics I" + }, + { + "name": "PHYS 5702", + "title": "Quantum Mechanics II" + }, + { + "name": "PHYS 8001", + "title": "Practicum Teaching of Physics" + }, + { + "name": "PHYS 8004", + "title": "Problems in Experimental Physics" + }, + { + "name": "PHYS 8005", + "title": "Problems in Theoretical Physics" + }, + { + "name": "PHYS 8020", + "title": "Topical Seminar I" + }, + { + "name": "PHYS 8030", + "title": "Topical Seminar II" + }, + { + "name": "PHYS 8050", + "title": "Physics Seminar" + }, + { + "name": "PHYS 8102", + "title": "Statistical Mechanics" + }, + { + "name": "PHYS 8701", + "title": "Quantum Field Theory" + }, + { + "name": "PHYS 8702", + "title": "Solid State Physics" + }, + { + "name": "PHYS 8703", + "title": "Nuclear and Elementary Particle Physics" + }, + { + "name": "PHYS 8704", + "title": "Many Electron Theory" + }, + { + "name": "PHYS 8705", + "title": "Advanced Topics in Nuclear and Particle Physics" + }, + { + "name": "PHYS 8985", + "title": "Teach in Higher Ed: Phys" + }, + { + "name": "PHYS 9991", + "title": "Master's Research Projects" + }, + { + "name": "PHYS 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "PHYS 9995", + "title": "Capstone Project" + }, + { + "name": "PHYS 9996", + "title": "Master's Thesis Research" + }, + { + "name": "PHYS 9998", + "title": "Pre-Dissertation Research / Elevation to Candidacy" + }, + { + "name": "PHYS 9999", + "title": "Dissertation Research" + }, + { + "name": "PHYS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PHYS F000", + "title": "* See Statement Below" + }, + { + "name": "PHYS L000", + "title": "Elective LL" + }, + { + "name": "PHYS P000", + "title": "Elective P" + }, + { + "name": "PHYS U000", + "title": "Elective UL" + }, + { + "name": "POLS 0825", + "title": "Quantitative Methods in the Social Sciences" + }, + { + "name": "POLS 0829", + "title": "The History & Significance of Race in America" + }, + { + "name": "POLS 0832", + "title": "Politics of Identity in America" + }, + { + "name": "POLS 0859", + "title": "The Making of American Society: Melting Pot or Culture Wars?" + }, + { + "name": "POLS 0862", + "title": "Development & Globalization" + }, + { + "name": "POLS 0864", + "title": "War and Peace" + }, + { + "name": "POLS 0866", + "title": "World Affairs" + }, + { + "name": "POLS 0868", + "title": "World Society in Literature and Film" + }, + { + "name": "POLS 0925", + "title": "Honors Quantitative Methods in the Social Sciences" + }, + { + "name": "POLS 0929", + "title": "Honors: The History & Significance of Race in America" + }, + { + "name": "POLS 0932", + "title": "Honors Politics of Identity in America" + }, + { + "name": "POLS 0962", + "title": "Honors Fate, Hope, and Action: Globalization Today" + }, + { + "name": "POLS 0966", + "title": "Honors World Affairs" + }, + { + "name": "POLS 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "POLS 1009", + "title": "Discovering Political Science" + }, + { + "name": "POLS 1101", + "title": "The American Political System" + }, + { + "name": "POLS 1102", + "title": "American Political System" + }, + { + "name": "POLS 1103", + "title": "The Individual, Race, and American Political Life" + }, + { + "name": "POLS 1201", + "title": "Foreign Governments and Politics" + }, + { + "name": "POLS 1301", + "title": "International Politics" + }, + { + "name": "POLS 1911", + "title": "Honors Introduction to American Politics" + }, + { + "name": "POLS 1921", + "title": "Honors Foreign Governments and Politics" + }, + { + "name": "POLS 1931", + "title": "Honors International Politics" + }, + { + "name": "POLS 1996", + "title": "Honors Introduction to Political Philosophy" + }, + { + "name": "POLS 2000", + "title": "Special Topics" + }, + { + "name": "POLS 2101", + "title": "American Federalism " + }, + { + "name": "POLS 2102", + "title": "American State and Local Politics " + }, + { + "name": "POLS 2103", + "title": "U.S. Public Policy Making" + }, + { + "name": "POLS 2107", + "title": "Capital Internship Seminar" + }, + { + "name": "POLS 2108", + "title": "Local Government and Community Advocacy" + }, + { + "name": "POLS 2140", + "title": "Special Topics in Urban Politics" + }, + { + "name": "POLS 2201", + "title": "Comparative Politics: Developing Nations" + }, + { + "name": "POLS 2202", + "title": "Power and the Poet" + }, + { + "name": "POLS 2211", + "title": "Contemporary Politics of Europe" + }, + { + "name": "POLS 2212", + "title": "Eastern Europe, Russia and the West" + }, + { + "name": "POLS 2231", + "title": "Comparative Political Systems in Latin America" + }, + { + "name": "POLS 2232", + "title": "The Politics of New Information Technologies" + }, + { + "name": "POLS 2255", + "title": "Comparative Public Policy" + }, + { + "name": "POLS 2301", + "title": "Theories of War and Peace" + }, + { + "name": "POLS 2311", + "title": "Post-Cold War Security" + }, + { + "name": "POLS 2314", + "title": "Politics of International Law" + }, + { + "name": "POLS 2321", + "title": "Politics of the Global Economy" + }, + { + "name": "POLS 2331", + "title": "International Organization" + }, + { + "name": "POLS 2341", + "title": "U.S. Foreign Policy" + }, + { + "name": "POLS 2351", + "title": "Japan and the Changing World Order" + }, + { + "name": "POLS 2431", + "title": "Modern Political Philosophy " + }, + { + "name": "POLS 2432", + "title": "American Political Thought " + }, + { + "name": "POLS 2441", + "title": "Democracy, Capitalism, and Socialism" + }, + { + "name": "POLS 2496", + "title": "Introduction to Political Philosophy" + }, + { + "name": "POLS 2503", + "title": "Evidence and Knowledge" + }, + { + "name": "POLS 2996", + "title": "Honors: Introduction to Political Philosophy" + }, + { + "name": "POLS 3082", + "title": "Independent Study" + }, + { + "name": "POLS 3101", + "title": "The American Presidency " + }, + { + "name": "POLS 3102", + "title": "The Legislative Process " + }, + { + "name": "POLS 3103", + "title": "The American Supreme Court " + }, + { + "name": "POLS 3105", + "title": "American Party System " + }, + { + "name": "POLS 3107", + "title": "State Politics and Policy" + }, + { + "name": "POLS 3111", + "title": "Media and the Political Process " + }, + { + "name": "POLS 3112", + "title": "American Public Opinion " + }, + { + "name": "POLS 3113", + "title": "Campaigns, Elections, and the Media " + }, + { + "name": "POLS 3121", + "title": "American Constitutional Principles I" + }, + { + "name": "POLS 3122", + "title": "Constitutional Interpretation" + }, + { + "name": "POLS 3123", + "title": "American Constitutional Principles II: Civil Rights in America " + }, + { + "name": "POLS 3124", + "title": "Politics of Sexual Orientation and Gender Identity" + }, + { + "name": "POLS 3125", + "title": "Interest Group Politics" + }, + { + "name": "POLS 3131", + "title": "Urban Politics and Problems" + }, + { + "name": "POLS 3132", + "title": "Urban Politics" + }, + { + "name": "POLS 3133", + "title": "Popular Culture and the City" + }, + { + "name": "POLS 3134", + "title": "The Politics of Inequality" + }, + { + "name": "POLS 3151", + "title": "Public Policy Analysis " + }, + { + "name": "POLS 3152", + "title": "U.S. Environmental Policy " + }, + { + "name": "POLS 3153", + "title": "The Politics of Poverty" + }, + { + "name": "POLS 3154", + "title": "Health Policy" + }, + { + "name": "POLS 3155", + "title": "Business and Public Policy" + }, + { + "name": "POLS 3161", + "title": "Public Administration" + }, + { + "name": "POLS 3196", + "title": "Urban Politics & Problems" + }, + { + "name": "POLS 3197", + "title": "Political Fiction" + }, + { + "name": "POLS 3201", + "title": "Nationalism, Ethnicity, and Politics " + }, + { + "name": "POLS 3202", + "title": "Politics & Religion" + }, + { + "name": "POLS 3203", + "title": "Comparative Politics of Democratization" + }, + { + "name": "POLS 3206", + "title": "Politics of Modern Capitalism" + }, + { + "name": "POLS 3211", + "title": "Politics & Society in Modern Italy" + }, + { + "name": "POLS 3212", + "title": "British Government and Politics" + }, + { + "name": "POLS 3213", + "title": "Post-Communist Politics" + }, + { + "name": "POLS 3231", + "title": "Politics of India" + }, + { + "name": "POLS 3241", + "title": "Mideast Politics" + }, + { + "name": "POLS 3251", + "title": "China: State and Society" + }, + { + "name": "POLS 3252", + "title": "East Asia and the United States" + }, + { + "name": "POLS 3265", + "title": "International Environmental Policy" + }, + { + "name": "POLS 3331", + "title": "Politics of the European Union" + }, + { + "name": "POLS 3332", + "title": "Globalization: Politics and Political Economy" + }, + { + "name": "POLS 3411", + "title": "Classical Political Philosophy" + }, + { + "name": "POLS 3421", + "title": "Theories of Justice " + }, + { + "name": "POLS 3422", + "title": "Marxism and Politics" + }, + { + "name": "POLS 3441", + "title": "African American Political Theory" + }, + { + "name": "POLS 3451", + "title": "Personality and Politics" + }, + { + "name": "POLS 3452", + "title": "Theory and Uses of Power " + }, + { + "name": "POLS 3500", + "title": "Special Topics: Research Preparation Seminar" + }, + { + "name": "POLS 3510", + "title": "Special Topics: Research Preparation Seminar" + }, + { + "name": "POLS 3520", + "title": "Special Topics: Research Preparation Seminar" + }, + { + "name": "POLS 3530", + "title": "Special Topics: Research Preparation Seminar" + }, + { + "name": "POLS 3540", + "title": "Special Topics: Research Preparation Seminar" + }, + { + "name": "POLS 3550", + "title": "Special Topics: Research Preparation Seminar" + }, + { + "name": "POLS 3910", + "title": "Honors Special Topics" + }, + { + "name": "POLS 3911", + "title": "Honors Politics in Film and Literature" + }, + { + "name": "POLS 3996", + "title": "Junior Honors Capstone Seminar" + }, + { + "name": "POLS 3997", + "title": "Junior Honors Capstone Seminar" + }, + { + "name": "POLS 4110", + "title": "Seminar in American Government" + }, + { + "name": "POLS 4121", + "title": "Women and Politics" + }, + { + "name": "POLS 4130", + "title": "Seminar in American Government " + }, + { + "name": "POLS 4131", + "title": "Seminar in Campaign Politics" + }, + { + "name": "POLS 4140", + "title": "Seminar in Urban, State & Local Politics" + }, + { + "name": "POLS 4150", + "title": "Seminar in Law & Society" + }, + { + "name": "POLS 4160", + "title": "Seminar in Public Administration " + }, + { + "name": "POLS 4185", + "title": "Internship I" + }, + { + "name": "POLS 4210", + "title": "Seminar in Comparative Politics " + }, + { + "name": "POLS 4220", + "title": "Seminar in Comparative Politics" + }, + { + "name": "POLS 4285", + "title": "Internship II" + }, + { + "name": "POLS 4310", + "title": "Seminar in International Politics" + }, + { + "name": "POLS 4320", + "title": "Seminar in International Politics " + }, + { + "name": "POLS 4385", + "title": "Internship III" + }, + { + "name": "POLS 4410", + "title": "Seminar in Political Philosophy" + }, + { + "name": "POLS 4420", + "title": "Seminar in Political Philosophy " + }, + { + "name": "POLS 4485", + "title": "Campaign Internship" + }, + { + "name": "POLS 4591", + "title": "Directed Research and Field Study" + }, + { + "name": "POLS 4691", + "title": "Directed Research and Field Study" + }, + { + "name": "POLS 4791", + "title": "Directed Research and Field Study" + }, + { + "name": "POLS 4891", + "title": "Directed Research and Field Study" + }, + { + "name": "POLS 4896", + "title": "Capstone Seminar in Political Science" + }, + { + "name": "POLS 4904", + "title": "Honors Seminar in Campaign Politics" + }, + { + "name": "POLS 4920", + "title": "University Honors Seminar in Comparative Politics" + }, + { + "name": "POLS 4940", + "title": "University Honors Seminar in Political Philosophy" + }, + { + "name": "POLS 4996", + "title": "Senior Honors Capstone Seminar" + }, + { + "name": "POLS 4997", + "title": "Senior Honors Capstone Seminar" + }, + { + "name": "POLS 8000", + "title": "Topics in Research Design" + }, + { + "name": "POLS 8001", + "title": "Political Statistics I" + }, + { + "name": "POLS 8002", + "title": "Qualitative Research Methods" + }, + { + "name": "POLS 8003", + "title": "Political Statistics II" + }, + { + "name": "POLS 8101", + "title": "Government in American Society" + }, + { + "name": "POLS 8102", + "title": "American Presidency" + }, + { + "name": "POLS 8103", + "title": "Legislative Behavior" + }, + { + "name": "POLS 8104", + "title": "Politics of Organized Interests" + }, + { + "name": "POLS 8105", + "title": "Public Law" + }, + { + "name": "POLS 8106", + "title": "Civil Rights and Liberties" + }, + { + "name": "POLS 8107", + "title": "Business Politics and Power" + }, + { + "name": "POLS 8108", + "title": "American Party System" + }, + { + "name": "POLS 8109", + "title": "Campaigns, Elections, and Media" + }, + { + "name": "POLS 8111", + "title": "American Federalism" + }, + { + "name": "POLS 8112", + "title": "Research in State Politics" + }, + { + "name": "POLS 8113", + "title": "Politics of Race and Class in America" + }, + { + "name": "POLS 8114", + "title": "Community Based Research " + }, + { + "name": "POLS 8115", + "title": "Critique of American Government" + }, + { + "name": "POLS 8120", + "title": "Topics in Public Policy" + }, + { + "name": "POLS 8121", + "title": "National Public Policy" + }, + { + "name": "POLS 8122", + "title": "Urban Public Policy" + }, + { + "name": "POLS 8124", + "title": "Public Opinion and Propaganda" + }, + { + "name": "POLS 8125", + "title": "Theories of Policy Making" + }, + { + "name": "POLS 8130", + "title": "Topics in American Politics" + }, + { + "name": "POLS 8140", + "title": "Issues in American Politics" + }, + { + "name": "POLS 8201", + "title": "Comparative Politics" + }, + { + "name": "POLS 8202", + "title": "Comparative Politics: Western Europe" + }, + { + "name": "POLS 8203", + "title": "Comparative Politics: Developing Nations" + }, + { + "name": "POLS 8204", + "title": "Latin American Politics" + }, + { + "name": "POLS 8205", + "title": "Russian and Eastern European Civilizations" + }, + { + "name": "POLS 8212", + "title": "Democratic Politics" + }, + { + "name": "POLS 8213", + "title": "Political Economy of Development" + }, + { + "name": "POLS 8214", + "title": "Political Economy of Identity in the Global Era" + }, + { + "name": "POLS 8215", + "title": "Middle East and Islamic Politics" + }, + { + "name": "POLS 8216", + "title": "The State in Comparative Politics" + }, + { + "name": "POLS 8217", + "title": "Democracy, Dictatorship, and Political Regimes" + }, + { + "name": "POLS 8230", + "title": "Topics in Comparative Politics" + }, + { + "name": "POLS 8240", + "title": "Issues in Comparative Politics" + }, + { + "name": "POLS 8301", + "title": "International Politics" + }, + { + "name": "POLS 8302", + "title": "International Security" + }, + { + "name": "POLS 8303", + "title": "International Political Economy" + }, + { + "name": "POLS 8304", + "title": "International Organizations" + }, + { + "name": "POLS 8305", + "title": "US Foreign Policy" + }, + { + "name": "POLS 8306", + "title": "Foreign Policy Analysis" + }, + { + "name": "POLS 8330", + "title": "Topics in International Politics" + }, + { + "name": "POLS 8340", + "title": "Issues in International Relations" + }, + { + "name": "POLS 8401", + "title": "Introduction to Political Theory" + }, + { + "name": "POLS 8402", + "title": "History of Political Theory I" + }, + { + "name": "POLS 8403", + "title": "Modern Political Philosophy" + }, + { + "name": "POLS 8404", + "title": "19th and 20th Century Political and Social Thought" + }, + { + "name": "POLS 8405", + "title": "Contemporary Theories of Democracy" + }, + { + "name": "POLS 8430", + "title": "Problems in Political Philosophy" + }, + { + "name": "POLS 8440", + "title": "Special Topics in Political Philosophy" + }, + { + "name": "POLS 8501", + "title": "Symposium in Political Science" + }, + { + "name": "POLS 8601", + "title": "Teaching Methods" + }, + { + "name": "POLS 9083", + "title": "Directed Study and Research I" + }, + { + "name": "POLS 9183", + "title": "Directed Study and Research II " + }, + { + "name": "POLS 9283", + "title": "Directed Study and Research III" + }, + { + "name": "POLS 9383", + "title": "Directed Study and Research IV" + }, + { + "name": "POLS 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "POLS 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "POLS 9999", + "title": "Dissertation Research" + }, + { + "name": "POLS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "POLS F000", + "title": "* See Statement Below" + }, + { + "name": "POLS L000", + "title": "Elective LL" + }, + { + "name": "POLS P000", + "title": "Elective P" + }, + { + "name": "POLS U000", + "title": "Elective UL" + }, + { + "name": "PORT 1001", + "title": "Basic I" + }, + { + "name": "PORT 1002", + "title": "Basic II" + }, + { + "name": "PORT 1003", + "title": "Intermediate" + }, + { + "name": "PORT 1021", + "title": "Portuguese for Spanish Speakers" + }, + { + "name": "PORT 2001", + "title": "Composition and Conversation" + }, + { + "name": "PORT 2002", + "title": "Readings in Portuguese" + }, + { + "name": "PORT 2101", + "title": "Conversational Review" + }, + { + "name": "PORT 2104", + "title": "Portuguese for Business Professions" + }, + { + "name": "PORT 3101", + "title": "Readings in Luso-Brazilian Literature" + }, + { + "name": "PORT 3201", + "title": "Portuguese-Speaking Cultures" + }, + { + "name": "PORT 4000", + "title": "Special Topics in Portuguese" + }, + { + "name": "PORT 4083", + "title": "Directed Reading" + }, + { + "name": "PORT 4101", + "title": "Brazilian Short Story" + }, + { + "name": "PORT 4102", + "title": "Contemporary Portuguese and/or Brazilian Literature" + }, + { + "name": "PORT 5000", + "title": "Special Topics in Portuguese" + }, + { + "name": "PORT 5101", + "title": "Brazilian Short Story" + }, + { + "name": "PORT 5102", + "title": "Contemporary Portuguese and Brazilian Literature" + }, + { + "name": "PORT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PORT F000", + "title": "* See Statement Below" + }, + { + "name": "PORT L000", + "title": "Elective LL" + }, + { + "name": "PORT P000", + "title": "Elective P" + }, + { + "name": "PORT U000", + "title": "Elective UL" + }, + { + "name": "PRAN 1085", + "title": "ProRanger Internship 1" + }, + { + "name": "PRAN 1577", + "title": "Introduction to the ProRanger Program" + }, + { + "name": "PRAN 2085", + "title": "ProRanger Internship 2" + }, + { + "name": "PRAN 3001", + "title": "Professional Preparation Seminar for the ProRanger" + }, + { + "name": "PRAN 3002", + "title": "Leadership and Communication in Law Enforcement for ProRangers" + }, + { + "name": "PRAN 3085", + "title": "ProRanger Internship 3" + }, + { + "name": "PRAN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PSY 0815", + "title": "Language in Society" + }, + { + "name": "PSY 0816", + "title": "Workings of the Mind" + }, + { + "name": "PSY 0817", + "title": "Brain Matters" + }, + { + "name": "PSY 0818", + "title": "Human Sexuality" + }, + { + "name": "PSY 0825", + "title": "Quantitative Methods in the Social Sciences" + }, + { + "name": "PSY 0916", + "title": "Honors Workings of the Mind" + }, + { + "name": "PSY 0918", + "title": "Honors Human Sexuality" + }, + { + "name": "PSY 1001", + "title": "Introduction to Psychology" + }, + { + "name": "PSY 1002", + "title": "Careers in Psychology" + }, + { + "name": "PSY 1003", + "title": "Statistics for Psychology" + }, + { + "name": "PSY 1004", + "title": "Critical Thinking in Psychology" + }, + { + "name": "PSY 1009", + "title": "Discovery Series - Perspectives on Psychology" + }, + { + "name": "PSY 1061", + "title": "Psychology as a Social Science" + }, + { + "name": "PSY 1062", + "title": "Psychology as a Social Science" + }, + { + "name": "PSY 1071", + "title": "Psychology as a Natural Science" + }, + { + "name": "PSY 1110", + "title": "Topics in Psychology I" + }, + { + "name": "PSY 1113", + "title": "Psychology and Community" + }, + { + "name": "PSY 1120", + "title": "Current Topics in Psychology II" + }, + { + "name": "PSY 1167", + "title": "Foundations in Statistical Methods" + }, + { + "name": "PSY 1174", + "title": "Psychology of Food" + }, + { + "name": "PSY 1901", + "title": "Honors: Introduction to Psychology" + }, + { + "name": "PSY 1996", + "title": "Honors Psychology as a Social Science" + }, + { + "name": "PSY 2101", + "title": "Foundations of Cognitive Psychology" + }, + { + "name": "PSY 2102", + "title": "Foundations of Evolutionary and Comparative Psychology" + }, + { + "name": "PSY 2103", + "title": "Foundations of Learning and Behavior Analysis" + }, + { + "name": "PSY 2104", + "title": "Foundations of Sensation and Perception" + }, + { + "name": "PSY 2168", + "title": "Inferential Methods in Psychology" + }, + { + "name": "PSY 2196", + "title": "Scientific Thinking in Psychology" + }, + { + "name": "PSY 2201", + "title": "Foundations of Psychopathology" + }, + { + "name": "PSY 2301", + "title": "Foundations of Developmental Psychology" + }, + { + "name": "PSY 2401", + "title": "Foundations of Social Psychology" + }, + { + "name": "PSY 2402", + "title": "Foundations of Industrial and Organizational Psychology" + }, + { + "name": "PSY 2501", + "title": "Foundations of Behavioral Neuroscience" + }, + { + "name": "PSY 2502", + "title": "Foundations of Cognitive Neuroscience" + }, + { + "name": "PSY 2601", + "title": "Foundations of Health Psychology" + }, + { + "name": "PSY 2901", + "title": "Honors: Foundations of Cognitive Psychology" + }, + { + "name": "PSY 2931", + "title": "Honors: Foundations of Developmental Psychology" + }, + { + "name": "PSY 2991", + "title": "Honors Research I" + }, + { + "name": "PSY 3000", + "title": "Topics in Psychology" + }, + { + "name": "PSY 3002", + "title": "Evolutionary and Comparative Psychology" + }, + { + "name": "PSY 3003", + "title": "Advanced Undergraduate Statistics" + }, + { + "name": "PSY 3004", + "title": "Positive Psychology" + }, + { + "name": "PSY 3005", + "title": "Affective Neuroscience" + }, + { + "name": "PSY 3006", + "title": "Stress and the Brain" + }, + { + "name": "PSY 3007", + "title": "Neuropharmacology of Drugs of Abuse" + }, + { + "name": "PSY 3008", + "title": "Decision Neuroscience" + }, + { + "name": "PSY 3009", + "title": "Current Perspectives on Parenting" + }, + { + "name": "PSY 3013", + "title": "Psychological Resilience" + }, + { + "name": "PSY 3096", + "title": "Conducting Psychological Research" + }, + { + "name": "PSY 3100", + "title": "Topics: Brain, Behavior and Cognition" + }, + { + "name": "PSY 3121", + "title": "Cognitive Enhancement and Superior Cognition" + }, + { + "name": "PSY 3131", + "title": "Problem Solving and Creative Thinking" + }, + { + "name": "PSY 3132", + "title": "Human Memory" + }, + { + "name": "PSY 3141", + "title": "Neurobiology and Evolution of Social Behavior" + }, + { + "name": "PSY 3151", + "title": "Direct Applications of Behavioral Principles" + }, + { + "name": "PSY 3152", + "title": "Experimental Psychopathology" + }, + { + "name": "PSY 3161", + "title": "Research Methods in Perception" + }, + { + "name": "PSY 3162", + "title": "Visual Recognition" + }, + { + "name": "PSY 3200", + "title": "Topics: Clinical" + }, + { + "name": "PSY 3221", + "title": "Clinical Psychology: Research and Practice" + }, + { + "name": "PSY 3222", + "title": "Psychoanalytic Theory" + }, + { + "name": "PSY 3223", + "title": "Child Psychopathology and Treatment" + }, + { + "name": "PSY 3300", + "title": "Topics: Developmental" + }, + { + "name": "PSY 3301", + "title": "Phases of Development: Infancy" + }, + { + "name": "PSY 3303", + "title": "Psychological Testing: Measuring IQ, Thoughts, Feelings, and Attitudes" + }, + { + "name": "PSY 3304", + "title": "Personality, Social and Emotional Development" + }, + { + "name": "PSY 3305", + "title": "Cognitive and Language Development" + }, + { + "name": "PSY 3306", + "title": "Neuroscience of Development and Aging" + }, + { + "name": "PSY 3307", + "title": "Theories of Development" + }, + { + "name": "PSY 3400", + "title": "Topics: Social Psychology" + }, + { + "name": "PSY 3411", + "title": "Social Cognition" + }, + { + "name": "PSY 3412", + "title": "Psychological Studies of Social Issues" + }, + { + "name": "PSY 3417", + "title": "Personnel Psychology" + }, + { + "name": "PSY 3418", + "title": "Human Performance Improvement" + }, + { + "name": "PSY 3501", + "title": "Investigation of Addiction Disorders" + }, + { + "name": "PSY 3561", + "title": "Psychopharmacology" + }, + { + "name": "PSY 3566", + "title": "Neurobiology of Learning and Memory" + }, + { + "name": "PSY 3600", + "title": "Advanced Topics in Health Psychology" + }, + { + "name": "PSY 3601", + "title": "Social Health Psychology" + }, + { + "name": "PSY 3602", + "title": "Clinical Neuropsychology" + }, + { + "name": "PSY 3603", + "title": "Clinical Applications of Health Psychology" + }, + { + "name": "PSY 3604", + "title": "Food on the Brain" + }, + { + "name": "PSY 3615", + "title": "History and Systems of Psychology" + }, + { + "name": "PSY 3620", + "title": "Topics in Psychology" + }, + { + "name": "PSY 3785", + "title": "Psychology Internship" + }, + { + "name": "PSY 3787", + "title": "Practicum" + }, + { + "name": "PSY 3791", + "title": "Collaborative Research I" + }, + { + "name": "PSY 3891", + "title": "Collaborative Research II" + }, + { + "name": "PSY 3920", + "title": "Honors Topics in Psychology" + }, + { + "name": "PSY 3921", + "title": "Honors Cognitive Enhancement and Superior Cognition" + }, + { + "name": "PSY 3961", + "title": "Honors Psychopharmacology" + }, + { + "name": "PSY 3991", + "title": "Honors Research II" + }, + { + "name": "PSY 4182", + "title": "Independent Study in Cognitive Neuroscience I" + }, + { + "name": "PSY 4282", + "title": "Independent Study in Cognitive Neuroscience II" + }, + { + "name": "PSY 4496", + "title": "Capstone: History of Psychology" + }, + { + "name": "PSY 4596", + "title": "Capstone: Fields of Psychology" + }, + { + "name": "PSY 4696", + "title": "Capstone in Psychology" + }, + { + "name": "PSY 4791", + "title": "Collaborative Research III" + }, + { + "name": "PSY 4796", + "title": "Capstone: Research" + }, + { + "name": "PSY 4891", + "title": "Collaborative Research IV" + }, + { + "name": "PSY 4991", + "title": "Honors Research III" + }, + { + "name": "PSY 4996", + "title": "Honors Capstone" + }, + { + "name": "PSY 4998", + "title": "Honors Research Problems" + }, + { + "name": "PSY 5003", + "title": "Advanced Statistics" + }, + { + "name": "PSY 5100", + "title": "Topics: Brain, Behavior and Cognition" + }, + { + "name": "PSY 5103", + "title": "Learning and Behavior Analysis" + }, + { + "name": "PSY 5104", + "title": "Ethics and Ethical Conflicts in Psychological Science" + }, + { + "name": "PSY 5151", + "title": "Motivation" + }, + { + "name": "PSY 5791", + "title": "Master's Directed Research I" + }, + { + "name": "PSY 5891", + "title": "Master's Directed Research II" + }, + { + "name": "PSY 8005", + "title": "Affective Neuroscience" + }, + { + "name": "PSY 8011", + "title": "Graduate Statistics I" + }, + { + "name": "PSY 8012", + "title": "Core Course in History and Systems of Psychology" + }, + { + "name": "PSY 8015", + "title": "Teaching of Psychology" + }, + { + "name": "PSY 8016", + "title": "Professional Development Seminar" + }, + { + "name": "PSY 8017", + "title": "Professional Issues for Psychology Careers" + }, + { + "name": "PSY 8021", + "title": "Graduate Statistics II " + }, + { + "name": "PSY 8031", + "title": "Survey of Multivariate Techniques " + }, + { + "name": "PSY 8032", + "title": "Structural Equation Modeling" + }, + { + "name": "PSY 8033", + "title": "Hierarchical Linear Modeling" + }, + { + "name": "PSY 8041", + "title": "Factor Analysis and Scaling" + }, + { + "name": "PSY 8051", + "title": "Focused Analysis of Research Data" + }, + { + "name": "PSY 8110", + "title": "Topical Seminars in Experimental Psychology" + }, + { + "name": "PSY 8120", + "title": "Topical Seminars in Experimental Psychology" + }, + { + "name": "PSY 8130", + "title": "Topical Seminars in Physiological Psychology" + }, + { + "name": "PSY 8210", + "title": "Topical Seminars in Learning" + }, + { + "name": "PSY 8212", + "title": "Core Course in Learning and Behavioral Analysis" + }, + { + "name": "PSY 8310", + "title": "Topical Seminar in Cognitive Psychology" + }, + { + "name": "PSY 8312", + "title": "Core Course in Cognitive Psychology" + }, + { + "name": "PSY 8410", + "title": "Multicultural Issues in Clinical Psychology " + }, + { + "name": "PSY 8411", + "title": "Cognitive-Behavioral Therapies" + }, + { + "name": "PSY 8412", + "title": "Core Course in Psychopathology" + }, + { + "name": "PSY 8413", + "title": "Psychological Assessment I" + }, + { + "name": "PSY 8420", + "title": "Topical Seminars in Clinical Psychology " + }, + { + "name": "PSY 8423", + "title": "Psychological Assessment II " + }, + { + "name": "PSY 8430", + "title": "Topical Seminars in Clinical Psychology IV" + }, + { + "name": "PSY 8433", + "title": "Clinical Psychology: Scientific and Professional Dimensions" + }, + { + "name": "PSY 8453", + "title": "Personality and Psychotherapy" + }, + { + "name": "PSY 8481", + "title": "Social, Cognitive, and Developmental Aspects of Behavior" + }, + { + "name": "PSY 8510", + "title": "Topical Seminar in Developmental Psychology I to IV" + }, + { + "name": "PSY 8512", + "title": "Core Course in Developmental Psychology " + }, + { + "name": "PSY 8513", + "title": "Cognitive Development " + }, + { + "name": "PSY 8610", + "title": "Topical Seminar in Organizational-Social" + }, + { + "name": "PSY 8612", + "title": "Core Course in Social Psychology" + }, + { + "name": "PSY 8613", + "title": "Advanced Social Psychology" + }, + { + "name": "PSY 8712", + "title": "Core Course in Behavioral Neuroscience" + }, + { + "name": "PSY 9183", + "title": "Readings in Psychology" + }, + { + "name": "PSY 9187", + "title": "Clinical Practicum" + }, + { + "name": "PSY 9283", + "title": "Readings in Psychology" + }, + { + "name": "PSY 9287", + "title": "Clinical Practicum " + }, + { + "name": "PSY 9387", + "title": "Clinical Practicum" + }, + { + "name": "PSY 9411", + "title": "Clinical Research Methodology" + }, + { + "name": "PSY 9485", + "title": "Ph.D. Internship Course " + }, + { + "name": "PSY 9487", + "title": "Clinical Practicum" + }, + { + "name": "PSY 9587", + "title": "Clinical Practicum" + }, + { + "name": "PSY 9987", + "title": "Assessment Practicum" + }, + { + "name": "PSY 9991", + "title": "Research" + }, + { + "name": "PSY 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "PSY 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "PSY 9999", + "title": "Ph.D. Dissertation Research" + }, + { + "name": "PSY E000", + "title": "Elective - needs evaluation" + }, + { + "name": "PSY F000", + "title": "* See Statement Below" + }, + { + "name": "PSY L000", + "title": "Elective LL" + }, + { + "name": "PSY U000", + "title": "Elective UL" + }, + { + "name": "PSY U001", + "title": "Elective UL" + }, + { + "name": "PLCY 5085", + "title": "Internship in Public Policy" + }, + { + "name": "PLCY 8118", + "title": "The Policy-Making Process" + }, + { + "name": "PLCY 8119", + "title": "Policy Analysis" + }, + { + "name": "PLCY 8123", + "title": "Bureaucracy and Public Management" + }, + { + "name": "PLCY 8127", + "title": "Policy Analysis Project" + }, + { + "name": "PLCY 8128", + "title": "State and Local Budgeting" + }, + { + "name": "PLCY 8131", + "title": "Innovation in Government" + }, + { + "name": "PR 1101", + "title": "PRactical Grammar for Public Communications" + }, + { + "name": "PR 1112", + "title": "Communicating Leadership" + }, + { + "name": "PR 1496", + "title": "News Writing and Media Relations" + }, + { + "name": "PR 1552", + "title": "Introduction to Public Relations" + }, + { + "name": "PR 2440", + "title": "Special Topics in Public Relations" + }, + { + "name": "PR 2551", + "title": "Research Methods" + }, + { + "name": "PR 2661", + "title": "Communicating Organizational Change" + }, + { + "name": "PR 2662", + "title": "Leading Groups and Team Building" + }, + { + "name": "PR 2672", + "title": "Global Communication and Leadership" + }, + { + "name": "PR 2701", + "title": "Public Relations Theory" + }, + { + "name": "PR 3096", + "title": "Public Relations Writing" + }, + { + "name": "PR 3101", + "title": "Digital Media, Social Media, Audience Analytics for Public Relations" + }, + { + "name": "PR 3201", + "title": "Law and Ethics in Public Relations" + }, + { + "name": "PR 3202", + "title": "Diversity and Media Issues in Public Relations" + }, + { + "name": "PR 3301", + "title": "Industry Essentials for Public Relations" + }, + { + "name": "PR 3302", + "title": "Crisis Communication" + }, + { + "name": "PR 3440", + "title": "Special Topics in Public Relations" + }, + { + "name": "PR 3483", + "title": "Directed Readings in Public Relations" + }, + { + "name": "PR 3582", + "title": "Independent Study in Public Relations" + }, + { + "name": "PR 3587", + "title": "Public Relations Field Experience" + }, + { + "name": "PR 4101", + "title": "Public Relations Campaigns and Case Studies" + }, + { + "name": "PR 4102", + "title": "Public Relations Portfolio" + }, + { + "name": "PR 4285", + "title": "Internship in Public Relations" + }, + { + "name": "PR 4440", + "title": "Special Topics in Public Relations" + }, + { + "name": "PR 4501", + "title": "Public Relations Management and Problems" + }, + { + "name": "PR 4571", + "title": "International Studies in Media and Communication" + }, + { + "name": "PR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "RE 3501", + "title": "Real Estate Fundamentals" + }, + { + "name": "RE 3502", + "title": "Real Estate Practice" + }, + { + "name": "RE 3524", + "title": "Residential Property Management" + }, + { + "name": "RE 3525", + "title": "Management of Corporate Real Estate Assets" + }, + { + "name": "RE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "RCTH 0813", + "title": "Disability Identity in Contemporary Society" + }, + { + "name": "RCTH 1102", + "title": "Inclusive Recreation and Sports Services" + }, + { + "name": "RCTH 2103", + "title": "Foundations of Recreational Therapy Practice" + }, + { + "name": "RCTH 2104", + "title": "Recreational Therapy Modalities" + }, + { + "name": "RCTH 2201", + "title": "Recreational Therapy and Developmental Disabilities" + }, + { + "name": "RCTH 2203", + "title": "Assistive Technology in Recreation" + }, + { + "name": "RCTH 2205", + "title": "Adventure Challenge/Programming" + }, + { + "name": "RCTH 3096", + "title": "Assessment and Documentation in Recreational Therapy" + }, + { + "name": "RCTH 3103", + "title": "Professional Issues in Recreational Therapy" + }, + { + "name": "RCTH 3111", + "title": "Health Promotion through Leisure Education" + }, + { + "name": "RCTH 3185", + "title": "Internship I in Recreational Therapy" + }, + { + "name": "RCTH 3196", + "title": "Research and Evaluation in Recreational Therapy" + }, + { + "name": "RCTH 3201", + "title": "Health, Activity, and Aging" + }, + { + "name": "RCTH 3202", + "title": "Recreational Therapy and Mental Health" + }, + { + "name": "RCTH 3282", + "title": "Independent Study" + }, + { + "name": "RCTH 4096", + "title": "Research and Evaluation in Recreational Therapy" + }, + { + "name": "RCTH 4103", + "title": "Professional Issues in Recreational Therapy" + }, + { + "name": "RCTH 4111", + "title": "Administration of Recreational Therapy" + }, + { + "name": "RCTH 4185", + "title": "Internship II in Recreational Therapy" + }, + { + "name": "RCTH 4196", + "title": "Recreational Therapy Clinical Procedures" + }, + { + "name": "RCTH 4205", + "title": "Recreational Therapy in Geriatric Service Settings" + }, + { + "name": "RCTH 4211", + "title": "Recreational Therapy and Physical Disabilities" + }, + { + "name": "RCTH 4213", + "title": "Recreational Therapy and Pediatric Healthcare" + }, + { + "name": "RCTH 5001", + "title": "Graduate Research I in Recreational Therapy" + }, + { + "name": "RCTH 5009", + "title": "Entrepreneurship in the Health Professions" + }, + { + "name": "RCTH 5102", + "title": "Recreational Therapy: Now and Then" + }, + { + "name": "RCTH 5201", + "title": "Managing Dementia Care" + }, + { + "name": "RCTH 5204", + "title": "Recreational Therapy and Assistive Technology" + }, + { + "name": "RCTH 5205", + "title": "Recreational Therapy in Geriatric Services" + }, + { + "name": "RCTH 5211", + "title": "Recreational Therapy & Physical Rehabilitation" + }, + { + "name": "RCTH 5212", + "title": "Play and Development" + }, + { + "name": "RCTH 5213", + "title": "Therapeutic Play, Recreation and Children's Health" + }, + { + "name": "RCTH 5214", + "title": "Child Life Interventions" + }, + { + "name": "RCTH 5250", + "title": "Special Topics in Recreational Therapy Practicum" + }, + { + "name": "RCTH 5261", + "title": "Recreational Therapy and Disabilities Seminar I" + }, + { + "name": "RCTH 5271", + "title": "Recreational Therapy and Disabilities Seminar II" + }, + { + "name": "RCTH 5301", + "title": "Evidence Based Practice in Recreational Therapy I" + }, + { + "name": "RCTH 5302", + "title": "Evidence Based Practice in Recreational Therapy II" + }, + { + "name": "RCTH 5311", + "title": "Conceptual and Contemporary Issues in Recreational Therapy" + }, + { + "name": "RCTH 5312", + "title": "Leisure, Health, and Recreational Therapy Interventions" + }, + { + "name": "RCTH 5314", + "title": "Leisure-time Physical Activity and Community Engagement in Recreational Therapy" + }, + { + "name": "RCTH 5315", + "title": "Social Engagement and Community Participation in Recreational Therapy" + }, + { + "name": "RCTH 5316", + "title": "Measuring Health and Disability: The ICF Model" + }, + { + "name": "RCTH 5382", + "title": "Independent Study" + }, + { + "name": "RCTH 5402", + "title": "Recreational Therapy Administration and Management" + }, + { + "name": "RCTH 5442", + "title": "Program Planning and Practice in Recreational Therapy" + }, + { + "name": "RCTH 5787", + "title": "Recreational Therapy Practicum" + }, + { + "name": "RCTH E000", + "title": "Elective - needs evaluation" + }, + { + "name": "REL 0802", + "title": "Race & Identity in Judaism" + }, + { + "name": "REL 0803", + "title": "The Art of Sacred Space" + }, + { + "name": "REL 0811", + "title": "Asian Behavior & Thought" + }, + { + "name": "REL 0833", + "title": "Race & Poverty in the Americas" + }, + { + "name": "REL 0863", + "title": "Religion in the World" + }, + { + "name": "REL 0876", + "title": "Religion in Philadelphia" + }, + { + "name": "REL 0902", + "title": "Honors Race & Identity in Judaism" + }, + { + "name": "REL 0911", + "title": "Honors Asian Behavior & Thought: Four Asian Models Shaping Your Action" + }, + { + "name": "REL 0933", + "title": "Honors Race & Poverty in the Americas" + }, + { + "name": "REL 0957", + "title": "Honors Sport & Leisure in American Society" + }, + { + "name": "REL 0963", + "title": "Honors Religion in the World" + }, + { + "name": "REL 0976", + "title": "Honors Religion in Philadelphia" + }, + { + "name": "REL 1001", + "title": "Religion and Society" + }, + { + "name": "REL 1002", + "title": "Racial Justice: A Religious Mandate for Obedience and Revolt" + }, + { + "name": "REL 1003", + "title": "Religion in America" + }, + { + "name": "REL 1004", + "title": "Religion and the Arts" + }, + { + "name": "REL 1005", + "title": "Introduction to Asian Religions" + }, + { + "name": "REL 1101", + "title": "Introduction to World Religions" + }, + { + "name": "REL 1102", + "title": "Introduction to Asian Religions" + }, + { + "name": "REL 1401", + "title": "Introduction to Western Religions" + }, + { + "name": "REL 1902", + "title": "Honors Introduction to Asian Religions" + }, + { + "name": "REL 1903", + "title": "Honors Religion in America" + }, + { + "name": "REL 2000", + "title": "Topics in Religious Studies I" + }, + { + "name": "REL 2001", + "title": "Women in Religion and Society" + }, + { + "name": "REL 2002", + "title": "Religion and Human Sexuality East & West" + }, + { + "name": "REL 2003", + "title": "Religion and the Arts" + }, + { + "name": "REL 2005", + "title": "Religion and Sports" + }, + { + "name": "REL 2006", + "title": "Death and Dying" + }, + { + "name": "REL 2007", + "title": "Religion in Film" + }, + { + "name": "REL 2101", + "title": "Indian Philosophies and Religions" + }, + { + "name": "REL 2102", + "title": "Introduction to Buddhism" + }, + { + "name": "REL 2201", + "title": "Chinese Religions - Confucius to Mao" + }, + { + "name": "REL 2301", + "title": "Introduction to Zen Buddhism" + }, + { + "name": "REL 2401", + "title": "Religion in the Ancient Near East " + }, + { + "name": "REL 2402", + "title": "Foundations of Judaism" + }, + { + "name": "REL 2403", + "title": "What Is Judaism?" + }, + { + "name": "REL 2405", + "title": "Introduction to Afro-Jewish Studies" + }, + { + "name": "REL 2406", + "title": "Introduction to the Bible" + }, + { + "name": "REL 2407", + "title": "The Body and The Bible" + }, + { + "name": "REL 2408", + "title": "Jewish Secular Thought and Culture from Spinoza to Seinfeld: A History of Jewish Secularism" + }, + { + "name": "REL 2409", + "title": "Secular Jewish Utopian Politics / Jewtopias: The Jewish Romance with Communism, Zionism, and America" + }, + { + "name": "REL 2447", + "title": "Kabbalah and Mysticism" + }, + { + "name": "REL 2496", + "title": "Introduction to the Bible" + }, + { + "name": "REL 2501", + "title": "Early Christian Literature: New Testament, Gnostic Tracts, and Early Fathers" + }, + { + "name": "REL 2502", + "title": "Jesus in the Media" + }, + { + "name": "REL 2596", + "title": "What Is Christianity?" + }, + { + "name": "REL 2602", + "title": "Islam in America " + }, + { + "name": "REL 2606", + "title": "Introduction to Islam" + }, + { + "name": "REL 2666", + "title": "Zombie Apocalypse: Holy Land, Haiti, and Hollywood" + }, + { + "name": "REL 2701", + "title": "Introduction to African American Religion" + }, + { + "name": "REL 2702", + "title": "Religion in Contemporary Africa" + }, + { + "name": "REL 2705", + "title": "Anti-Semitism/Holocaust/Racism" + }, + { + "name": "REL 2900", + "title": "Honors Topics in Religious Studies I" + }, + { + "name": "REL 2905", + "title": "Honors Religion and Sports" + }, + { + "name": "REL 2996", + "title": "Honors Death and Dying" + }, + { + "name": "REL 3000", + "title": "Topics in Religious Studies II " + }, + { + "name": "REL 3001", + "title": "Earth Ethics" + }, + { + "name": "REL 3002", + "title": "Philosophy of Religion " + }, + { + "name": "REL 3003", + "title": "Religion and Psychology " + }, + { + "name": "REL 3004", + "title": "Religion and Science " + }, + { + "name": "REL 3005", + "title": "Martyrs and Suicides: Religion and Self-Chosen Death" + }, + { + "name": "REL 3011", + "title": "Monks, Masters, and Magicians: Religion in Premodern Chinese Literature" + }, + { + "name": "REL 3082", + "title": "Independent Study" + }, + { + "name": "REL 3101", + "title": "Yoga & Tantric Mysticism" + }, + { + "name": "REL 3102", + "title": "Buddhist Philosophy" + }, + { + "name": "REL 3201", + "title": "I-Ching, Tao, and Ch'an/Zen" + }, + { + "name": "REL 3222", + "title": "Sociology of Religion" + }, + { + "name": "REL 3301", + "title": "Japanese Religions" + }, + { + "name": "REL 3302", + "title": "Japanese Buddhism" + }, + { + "name": "REL 3401", + "title": "Modern Trends in Judaism" + }, + { + "name": "REL 3403", + "title": "Biblical Archaeology" + }, + { + "name": "REL 3404", + "title": "Dead Sea Scrolls" + }, + { + "name": "REL 3405", + "title": "Judaism and Literature" + }, + { + "name": "REL 3407", + "title": "Jews, America and Sports" + }, + { + "name": "REL 3411", + "title": "The Philosophies of Judaism" + }, + { + "name": "REL 3501", + "title": "History of Christianity" + }, + { + "name": "REL 3502", + "title": "Global Pentecostalism" + }, + { + "name": "REL 3601", + "title": "The Islamic State" + }, + { + "name": "REL 3602", + "title": "Women in Islam " + }, + { + "name": "REL 3603", + "title": "Islamic Mysticism " + }, + { + "name": "REL 3701", + "title": "Traditional Religions of Africa " + }, + { + "name": "REL 3702", + "title": "African Religions and New World Culture" + }, + { + "name": "REL 3801", + "title": "Contemporary Religious Thinkers" + }, + { + "name": "REL 3882", + "title": "Independent Study" + }, + { + "name": "REL 3900", + "title": "Honors Topics in Religious Studies" + }, + { + "name": "REL 3901", + "title": "Honors Contemporary Religious Thinkers" + }, + { + "name": "REL 3904", + "title": "Honors Earth Ethics" + }, + { + "name": "REL 4000", + "title": "Topics in Religious Studies I" + }, + { + "name": "REL 4001", + "title": "Existentialism: Secular and Religious" + }, + { + "name": "REL 4003", + "title": "Comparative Mysticism East and West" + }, + { + "name": "REL 4010", + "title": "Topics in Religious Studies" + }, + { + "name": "REL 4082", + "title": "Independent Study" + }, + { + "name": "REL 4096", + "title": "Capstone Seminar in Religion" + }, + { + "name": "REL 4406", + "title": "Ancient Judaism" + }, + { + "name": "REL 4411", + "title": "Secularism: Jewish and Muslim Women" + }, + { + "name": "REL 4882", + "title": "Independent Study" + }, + { + "name": "REL 4900", + "title": "Honors Topics in Religious Studies II" + }, + { + "name": "REL 4901", + "title": "Honors Comparative Philosophy of Religion" + }, + { + "name": "REL 5000", + "title": "Special Topics" + }, + { + "name": "REL 5001", + "title": "Foundations in Philosophy of Religion " + }, + { + "name": "REL 5002", + "title": "Foundations in Religion and the Social Sciences " + }, + { + "name": "REL 5003", + "title": "Foundations in Textual and Historical Studies in Religion " + }, + { + "name": "REL 5004", + "title": "Foundations in Religion and Psychology " + }, + { + "name": "REL 5006", + "title": "Foundations in Religion, Race, and Ethnicity " + }, + { + "name": "REL 5009", + "title": "Foundations for the Critical Study of the Hebrew Bible" + }, + { + "name": "REL 5101", + "title": "Foundations in Hinduism " + }, + { + "name": "REL 5102", + "title": "Foundations in Indian Buddhism " + }, + { + "name": "REL 5201", + "title": "Foundations in Chinese Religions" + }, + { + "name": "REL 5202", + "title": "Foundations in Chinese Buddhism" + }, + { + "name": "REL 5301", + "title": "Foundations in Japanese Buddhism" + }, + { + "name": "REL 5401", + "title": "Foundations in Judaism " + }, + { + "name": "REL 5501", + "title": "Foundations in Christianity " + }, + { + "name": "REL 5601", + "title": "Foundations in Islam" + }, + { + "name": "REL 5701", + "title": "Foundations in African Religions" + }, + { + "name": "REL 5801", + "title": "Foundations in Digital Humanities for the Study of Religion" + }, + { + "name": "REL 8001", + "title": "Religious History of the United States in the 20th Century" + }, + { + "name": "REL 8002", + "title": "American Religious History" + }, + { + "name": "REL 8003", + "title": "American Religious History II" + }, + { + "name": "REL 8004", + "title": "The History of Ethics" + }, + { + "name": "REL 8005", + "title": "Interreligious Dialogue" + }, + { + "name": "REL 8006", + "title": "Methodological Options in the Study of Religion" + }, + { + "name": "REL 8007", + "title": "The Body: East and West" + }, + { + "name": "REL 8008", + "title": "Jung and the East" + }, + { + "name": "REL 8009", + "title": "Religious Experience: Body and Meditation" + }, + { + "name": "REL 8010", + "title": "Rel Exper-East & West" + }, + { + "name": "REL 8011", + "title": "Religion and Public Life" + }, + { + "name": "REL 8012", + "title": "Religion and Sexuality" + }, + { + "name": "REL 8100", + "title": "Topics in Buddhist Thought " + }, + { + "name": "REL 8201", + "title": "Chinese Philosophy and Religion" + }, + { + "name": "REL 8300", + "title": "Topics in Japanese Buddhism " + }, + { + "name": "REL 8301", + "title": "Kyoto School of Philosophy" + }, + { + "name": "REL 8400", + "title": "Topics in Biblical Studies" + }, + { + "name": "REL 8401", + "title": "Race, Gender, Class and Ethnicity in Ancient Near East" + }, + { + "name": "REL 8402", + "title": "Violence in Ancient Religion: Pagan, Christian, and Jewish, 50 CE-500 CE" + }, + { + "name": "REL 8403", + "title": "Holocaust and Representation" + }, + { + "name": "REL 8405", + "title": "Women in Ancient Christianity" + }, + { + "name": "REL 8406", + "title": "Feminist and Womanist Biblical Interpretation" + }, + { + "name": "REL 8501", + "title": "Modern Catholicism" + }, + { + "name": "REL 8502", + "title": "Women in Ancient Christianity" + }, + { + "name": "REL 8503", + "title": "Issues in Theology" + }, + { + "name": "REL 8504", + "title": "Christology in the Ancient Church" + }, + { + "name": "REL 8600", + "title": "Topics in Islamic History" + }, + { + "name": "REL 8601", + "title": "Islamic Jurisprudence" + }, + { + "name": "REL 8602", + "title": "Islamic Mysticism" + }, + { + "name": "REL 8603", + "title": "Islam in Global Perspective" + }, + { + "name": "REL 8604", + "title": "African American Islam" + }, + { + "name": "REL 8700", + "title": "Topics in African Religions" + }, + { + "name": "REL 8701", + "title": "African Ideas of God" + }, + { + "name": "REL 8702", + "title": "Religions of the African Diaspora" + }, + { + "name": "REL 8703", + "title": "Africana Philosophical Thought" + }, + { + "name": "REL 8704", + "title": "Foucault in Africana Thought " + }, + { + "name": "REL 8800", + "title": "Special Topics in Religion" + }, + { + "name": "REL 8810", + "title": "Special Topics in Religion" + }, + { + "name": "REL 9087", + "title": "Teaching Practicum in Religion Studies" + }, + { + "name": "REL 9182", + "title": "Individual Study" + }, + { + "name": "REL 9282", + "title": "Individual Study" + }, + { + "name": "REL 9382", + "title": "Individual Study" + }, + { + "name": "REL 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "REL 9996", + "title": "Master's Thesis Research" + }, + { + "name": "REL 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "REL 9999", + "title": "Dissertation Research" + }, + { + "name": "REL E000", + "title": "Elective - needs evaluation" + }, + { + "name": "REL F000", + "title": "* See Statement Below" + }, + { + "name": "REL L000", + "title": "Elective LL" + }, + { + "name": "REL P000", + "title": "Elective P" + }, + { + "name": "REL U000", + "title": "Elective UL" + }, + { + "name": "RMI 0822", + "title": "Investing for the Future" + }, + { + "name": "RMI 2101", + "title": "Introduction to Risk Management" + }, + { + "name": "RMI 2102", + "title": "Professional Development in Risk Management and Insurance" + }, + { + "name": "RMI 2501", + "title": "Fundamentals of Personal Financial Planning" + }, + { + "name": "RMI 2901", + "title": "Honors Introduction to Risk Management" + }, + { + "name": "RMI 3501", + "title": "Managing Human Capital Risk" + }, + { + "name": "RMI 3502", + "title": "Managing Property Liability Risk I" + }, + { + "name": "RMI 3503", + "title": "Retirement Plans" + }, + { + "name": "RMI 3504", + "title": "Managing Property Liability Risk II" + }, + { + "name": "RMI 3505", + "title": "Risk Financing" + }, + { + "name": "RMI 3506", + "title": "Risk Analytics" + }, + { + "name": "RMI 3511", + "title": "Social Insurance and Public Policy" + }, + { + "name": "RMI 3519", + "title": "Insurance, Benefits and Retirement Planning" + }, + { + "name": "RMI 3567", + "title": "Managing International Risk" + }, + { + "name": "RMI 3580", + "title": "Special Topics - Risk Management & Insurance" + }, + { + "name": "RMI 3581", + "title": "Field Experience in Risk Management and Insurance" + }, + { + "name": "RMI 3582", + "title": "Independent Study" + }, + { + "name": "RMI 3682", + "title": "Independent Study" + }, + { + "name": "RMI 3999", + "title": "Honors Thesis I" + }, + { + "name": "RMI 4596", + "title": "Advanced Topics in Managing Human Capital Risk" + }, + { + "name": "RMI 4597", + "title": "Managing Risk Across the Enterprise" + }, + { + "name": "RMI 4999", + "title": "Honors Thesis II" + }, + { + "name": "RMI 5051", + "title": "Managing Risk" + }, + { + "name": "RMI 5101", + "title": "Managing Human Capital" + }, + { + "name": "RMI 5102", + "title": "Retirement Plans" + }, + { + "name": "RMI 5103", + "title": "Health Risks" + }, + { + "name": "RMI 5104", + "title": "The Role of Property and Casualty Insurance Sector in Enterprise Risk Management" + }, + { + "name": "RMI 5105", + "title": "Advanced Applications in Risk Management" + }, + { + "name": "RMI 5106", + "title": "Adv Risk Mgmt Models" + }, + { + "name": "RMI 5107", + "title": "Risk Management, Governance and the Role of the Board" + }, + { + "name": "RMI 5108", + "title": "International Risk Management" + }, + { + "name": "RMI 5109", + "title": "Operational and Strategic Risk Management" + }, + { + "name": "RMI 5170", + "title": "Special Topics" + }, + { + "name": "RMI 5182", + "title": "Independent Study" + }, + { + "name": "RMI 5190", + "title": "Special Topics - Risk Management and Insurance" + }, + { + "name": "RMI 5282", + "title": "Independent Study" + }, + { + "name": "RMI 5301", + "title": "Enterprise Risk Management" + }, + { + "name": "RMI 5801", + "title": "Enterprise Risk Management" + }, + { + "name": "RMI 5882", + "title": "Independent Study" + }, + { + "name": "RMI 5890", + "title": "Special Topics - RMI" + }, + { + "name": "RMI 9001", + "title": "Seminar-Property and Liability Insurance Markets" + }, + { + "name": "RMI 9002", + "title": "Seminar-Life Insurance and Employee Benefits" + }, + { + "name": "RMI 9003", + "title": "Seminar in Risk Theory" + }, + { + "name": "RMI 9004", + "title": "Healthcare Finance and Insurance" + }, + { + "name": "RMI 9005", + "title": "Law and Economics of Liability Markets" + }, + { + "name": "RMI 9090", + "title": "Spec Topic Risk Mgt" + }, + { + "name": "RMI 9183", + "title": "Directed Study-Risk Mgt" + }, + { + "name": "RMI E000", + "title": "Elective - needs evaluation" + }, + { + "name": "RUS 0815", + "title": "Language in Society" + }, + { + "name": "RUS 0831", + "title": "Immigration and the American Dream" + }, + { + "name": "RUS 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "RUS 0871", + "title": "Arts in Cultural Context" + }, + { + "name": "RUS 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "RUS 1001", + "title": "First-Year Russian I" + }, + { + "name": "RUS 1002", + "title": "First-Year Russian II" + }, + { + "name": "RUS 1004", + "title": "Intensive First-Year Russian" + }, + { + "name": "RUS 1082", + "title": "Independent Study in Russian Language" + }, + { + "name": "RUS 1201", + "title": "Russian Culture" + }, + { + "name": "RUS 2001", + "title": "Second-Year Russian I" + }, + { + "name": "RUS 2002", + "title": "Second-Year Russian II" + }, + { + "name": "RUS 2101", + "title": "Contemporary Russia in Literature and Film" + }, + { + "name": "RUS 2102", + "title": "Russian Short Story in English" + }, + { + "name": "RUS 2103", + "title": "The Power and the Poet" + }, + { + "name": "RUS 2105", + "title": "Echoes of Terror in Russian Culture" + }, + { + "name": "RUS 2106", + "title": "Russian Comedy" + }, + { + "name": "RUS 2107", + "title": "History of Russian Film" + }, + { + "name": "RUS 2108", + "title": "Women's Voices in Russian Culture" + }, + { + "name": "RUS 2109", + "title": "Jewish Voices in Russian Culture" + }, + { + "name": "RUS 2111", + "title": "19th Century Slavic Literature in English" + }, + { + "name": "RUS 2112", + "title": "Modern Slavic Literature in English" + }, + { + "name": "RUS 2114", + "title": "Social and Economic Transformation in Russia" + }, + { + "name": "RUS 2121", + "title": "Russian Cities" + }, + { + "name": "RUS 2415", + "title": "Russian History in Literature and Film" + }, + { + "name": "RUS 2901", + "title": "Honors Modern Russia in Literature and Film" + }, + { + "name": "RUS 2915", + "title": "Honors Russian History in Literature and Film" + }, + { + "name": "RUS 3001", + "title": "Third-Year Russian I" + }, + { + "name": "RUS 3002", + "title": "Third-Year Russian II" + }, + { + "name": "RUS 3003", + "title": "Heritage Russian I" + }, + { + "name": "RUS 3004", + "title": "Heritage Russian II" + }, + { + "name": "RUS 3082", + "title": "Independent Study" + }, + { + "name": "RUS 3201", + "title": "Service Learning in Russian I" + }, + { + "name": "RUS 3202", + "title": "Service Learning in Russian II" + }, + { + "name": "RUS 3285", + "title": "Internship in Russian" + }, + { + "name": "RUS 3501", + "title": "Russian for Business and Travel" + }, + { + "name": "RUS 4001", + "title": "Fourth-Year Russian I" + }, + { + "name": "RUS 4002", + "title": "Fourth-Year Russian II" + }, + { + "name": "RUS 4097", + "title": "Fourth-Year Russian I: Composition & Conversation" + }, + { + "name": "RUS 4101", + "title": "Contemporary Russia in Literature and Film: Russian Trailer Section" + }, + { + "name": "RUS 4103", + "title": "The Power and the Poet (in Russian)" + }, + { + "name": "RUS 4104", + "title": "Russian History in Literature and Film (in Russian)" + }, + { + "name": "RUS 4105", + "title": "Echoes of Terror in Russian Culture (in Russian)" + }, + { + "name": "RUS 4106", + "title": "Russian Comedy (in Russian)" + }, + { + "name": "RUS 4107", + "title": "History of Russian Film (in Russian)" + }, + { + "name": "RUS 4108", + "title": "Women's Voices in Russian Culture (in Russian)" + }, + { + "name": "RUS 4109", + "title": "Jewish Voices in Russian Culture (in Russian)" + }, + { + "name": "RUS 4111", + "title": "Pushkin" + }, + { + "name": "RUS 4112", + "title": "Tolstoy" + }, + { + "name": "RUS 4113", + "title": "Dostoevsky" + }, + { + "name": "RUS 4114", + "title": "Russian Novel" + }, + { + "name": "RUS 4115", + "title": "Russian Drama" + }, + { + "name": "RUS 4116", + "title": "Russian Poetry" + }, + { + "name": "RUS 4121", + "title": "Russian Cities (in Russian)" + }, + { + "name": "RUS 4182", + "title": "Advanced Independent Study in Russian Literature" + }, + { + "name": "RUS 4198", + "title": "Writing with Russian Sources" + }, + { + "name": "RUS 4282", + "title": "Advanced Independent Study in Russian Literature" + }, + { + "name": "RUS 4382", + "title": "Advanced Independent Study in Russian Area Studies" + }, + { + "name": "RUS 4483", + "title": "Advanced Directed Readings in Russian Area Studies" + }, + { + "name": "RUS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "RUS F000", + "title": "* See Statement Below" + }, + { + "name": "RUS L000", + "title": "Elective LL" + }, + { + "name": "RUS P000", + "title": "Elective P" + }, + { + "name": "RUS U000", + "title": "Elective UL" + }, + { + "name": "SPSY 0828", + "title": "The Meaning of Madness" + }, + { + "name": "SPSY 0928", + "title": "Honors The Meaning of Madness" + }, + { + "name": "SPSY 2271", + "title": "Introduction to School Psychology" + }, + { + "name": "SPSY 2303", + "title": "The Impact of Trauma on the Individual and Society" + }, + { + "name": "SPSY 3000", + "title": "Topics in School Psychology I" + }, + { + "name": "SPSY 5667", + "title": "Introduction to Cognitive Assessment" + }, + { + "name": "SPSY 5671", + "title": "Advanced Cognitive Assessment" + }, + { + "name": "SPSY 5672", + "title": "Personality and Psychotherapy" + }, + { + "name": "SPSY 5673", + "title": "Introduction to the Diagnostic Process" + }, + { + "name": "SPSY 5674", + "title": "Social and Behavioral Assessment for Intervention" + }, + { + "name": "SPSY 5676", + "title": "Applied Behavior Analysis" + }, + { + "name": "SPSY 5771", + "title": "Physiological Psychology" + }, + { + "name": "SPSY 8621", + "title": "Academic Assessment and Intervention" + }, + { + "name": "SPSY 8770", + "title": "Seminar: Special Topics in School Psychology" + }, + { + "name": "SPSY 8771", + "title": "Social Psychology of Education" + }, + { + "name": "SPSY 8772", + "title": "Seminar: Role and Function of the School Psychologist" + }, + { + "name": "SPSY 8773", + "title": "Challenges to Development: Child and Adolescent Psychopathology" + }, + { + "name": "SPSY 8774", + "title": "Professional Issues and Literature in School Psychology" + }, + { + "name": "SPSY 8775", + "title": "Legal and Ethical Problems and Professional Responsibility" + }, + { + "name": "SPSY 8776", + "title": "History and Systems of Psychology" + }, + { + "name": "SPSY 8777", + "title": "Psychotherapeutic Strategies" + }, + { + "name": "SPSY 8780", + "title": "Topical Seminar in School Psychology" + }, + { + "name": "SPSY 8787", + "title": "Seminar on Verbal Behavior" + }, + { + "name": "SPSY 9487", + "title": "Practicum in School Psychology" + }, + { + "name": "SPSY 9587", + "title": "School Consultation" + }, + { + "name": "SPSY 9687", + "title": "Clinical Supervision Seminar in School Psychology" + }, + { + "name": "SPSY 9688", + "title": "Psychoeducational Clinic" + }, + { + "name": "SPSY 9787", + "title": "Practicum on Children with Low Incidence Disabilities" + }, + { + "name": "SPSY 9788", + "title": "Seminar on Children with Low Incidence Disabilities" + }, + { + "name": "SPSY 9876", + "title": "Supervision in School Psychological Services" + }, + { + "name": "SPSY 9885", + "title": "Internship in School Psychology" + }, + { + "name": "SPSY 9982", + "title": "Independent Study in School Psychology" + }, + { + "name": "SPSY 9986", + "title": "Internship in School Psychology" + }, + { + "name": "SPSY 9999", + "title": "Doctoral Dissertation" + }, + { + "name": "SPSY E000", + "title": "Elective - needs evaluation" + }, + { + "name": "STHA 0850", + "title": "GenEd Limited Edition GQ" + }, + { + "name": "STHA 0950", + "title": "Honors GenEd Limited Edition GQ" + }, + { + "name": "STHA 3485", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "STHA 3486", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "STHA E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SBM 0880", + "title": "GenEd Limited Edition GU" + }, + { + "name": "SBM 0980", + "title": "Honors GenEd Limited Edition GU" + }, + { + "name": "SBM 3585", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "SBM 3586", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "SBM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "DENT D001", + "title": "1st Yr Dental Sch Prog" + }, + { + "name": "DENT D002", + "title": "2nd Yr Dental Sch Prog" + }, + { + "name": "DENT D003", + "title": "3rd Yr Dental Sch Prog" + }, + { + "name": "DENT D004", + "title": "4th Yr Dental Sch Prog" + }, + { + "name": "DENT D007", + "title": "Extended Clinic - Res" + }, + { + "name": "DENT D008", + "title": "Extended Clinic - Nonres" + }, + { + "name": "DENT D020", + "title": "Summer Clinic I (8 Wk)" + }, + { + "name": "DENT D022", + "title": "Summer Clinic I (6 Wk)" + }, + { + "name": "DENT D026", + "title": "Summer Clinic II" + }, + { + "name": "DENT D036", + "title": "Senior Clinic" + }, + { + "name": "DENT D075", + "title": "Emergency Svs.Clinic II" + }, + { + "name": "DENT D098", + "title": "Extended Clinic-Res" + }, + { + "name": "DENT D099", + "title": "Extended Clinic-Non Res" + }, + { + "name": "DENT D100", + "title": "Biochemistry" + }, + { + "name": "DENT D101", + "title": "General & Oral Histology" + }, + { + "name": "DENT D105", + "title": "Intro to Computing" + }, + { + "name": "DENT D108", + "title": "Science in Dental Practice I" + }, + { + "name": "DENT D120", + "title": "The Practice and Profession of Dentistry" + }, + { + "name": "DENT D131", + "title": "Behavioral Sciences" + }, + { + "name": "DENT D139", + "title": "DPH I: Cariology, EBD and Principles of Prevention" + }, + { + "name": "DENT D150", + "title": "Dental Materials I" + }, + { + "name": "DENT D161", + "title": "Restorative Dentistry I for Advanced Standing" + }, + { + "name": "DENT D162", + "title": "Restorative Dentistry I - Lecture" + }, + { + "name": "DENT D163", + "title": "Restorative Dentistry I - Lab" + }, + { + "name": "DENT D164", + "title": "Projects in Restorative Dentistry Advanced Standing" + }, + { + "name": "DENT D200", + "title": "Inflammation, Infection and Wound Healing" + }, + { + "name": "DENT D201", + "title": "Oral Histology" + }, + { + "name": "DENT D202", + "title": "Gross Anatomy" + }, + { + "name": "DENT D203", + "title": "Neuroanatomy" + }, + { + "name": "DENT D204", + "title": "The Nervous System and Pain" + }, + { + "name": "DENT D210", + "title": "Postnatal Craniofacial Growth and Cephalometrics" + }, + { + "name": "DENT D211", + "title": "Behavioral Science I" + }, + { + "name": "DENT D250", + "title": "Dental Materials II" + }, + { + "name": "DENT D251", + "title": "Dental Materials I & II" + }, + { + "name": "DENT D252", + "title": "Advanced Standing Behavioral Science I" + }, + { + "name": "DENT D253", + "title": "Advanced Standing Periodontology" + }, + { + "name": "DENT D254", + "title": "Advanced Standing Dental Public Health" + }, + { + "name": "DENT D255", + "title": "Advanced Standing Restorative Dentistry I Projects" + }, + { + "name": "DENT D261", + "title": "Restorative Dentistry II for Advanced Standing" + }, + { + "name": "DENT D262", + "title": "Restorative Dentistry II Lecture" + }, + { + "name": "DENT D263", + "title": "Restorative Dentistry II Lab" + }, + { + "name": "DENT D267", + "title": "Oral Radiology" + }, + { + "name": "DENT D273", + "title": "Introduction to Periodontology" + }, + { + "name": "DENT D277", + "title": "Physiology" + }, + { + "name": "DENT D300", + "title": "Human Systems and Disease I" + }, + { + "name": "DENT D301", + "title": "Human Systems and Disease II" + }, + { + "name": "DENT D303", + "title": "Physical Diagnosis" + }, + { + "name": "DENT D304", + "title": "Microbiology" + }, + { + "name": "DENT D305", + "title": "Pathology" + }, + { + "name": "DENT D306", + "title": "Dental Public Health" + }, + { + "name": "DENT D307", + "title": "Public Health" + }, + { + "name": "DENT D339", + "title": "Oral Surgery I" + }, + { + "name": "DENT D350", + "title": "Dental Materials II" + }, + { + "name": "DENT D356", + "title": "Fixed Part Pros Lect" + }, + { + "name": "DENT D357", + "title": "Fixed Part Pros Lab" + }, + { + "name": "DENT D360", + "title": "Restorative Dentistry III Lecture" + }, + { + "name": "DENT D361", + "title": "Restorative Dentistry III Lab" + }, + { + "name": "DENT D369", + "title": "Basic Cardiac Life Support" + }, + { + "name": "DENT D370", + "title": "Postnatal Craniofacial Growth and Cephalometrics" + }, + { + "name": "DENT D373", + "title": "Principles of Periodontology I" + }, + { + "name": "DENT D375", + "title": "Patient Management" + }, + { + "name": "DENT D377", + "title": "Clinical Nutrition" + }, + { + "name": "DENT D400", + "title": "Advanced Emergency Dentistry" + }, + { + "name": "DENT D401", + "title": "Dental Ethics and Jurisprudence" + }, + { + "name": "DENT D402", + "title": "DPH II - Health Promotion in Populations" + }, + { + "name": "DENT D403", + "title": "Advanced Restorative Dentistry Lecture and Lab" + }, + { + "name": "DENT D404", + "title": "Medicine I" + }, + { + "name": "DENT D407", + "title": "Pharmacology" + }, + { + "name": "DENT D408", + "title": "Oral Pathology I" + }, + { + "name": "DENT D420", + "title": "Intro Clinical Dentistry" + }, + { + "name": "DENT D421", + "title": "Treatment Planning" + }, + { + "name": "DENT D422", + "title": "Medical Emergencies" + }, + { + "name": "DENT D439", + "title": "Oral Surgery Lecture" + }, + { + "name": "DENT D440", + "title": "Nutrition" + }, + { + "name": "DENT D441", + "title": "Intro Clinical Dentistry" + }, + { + "name": "DENT D442", + "title": "Pre-Clinical Radiography" + }, + { + "name": "DENT D452", + "title": "Endodontology Lecture" + }, + { + "name": "DENT D453", + "title": "Endodontology Laboratory" + }, + { + "name": "DENT D456", + "title": "Restorative Dentistry IV Lecture" + }, + { + "name": "DENT D457", + "title": "Restorative Dentistry IV Lab" + }, + { + "name": "DENT D460", + "title": "Operative Dentistry Lect" + }, + { + "name": "DENT D461", + "title": "Operative Dentistry Lab" + }, + { + "name": "DENT D465", + "title": "Oral Radiology" + }, + { + "name": "DENT D466", + "title": "Pediatric Dentistry Lecture and Laboratory" + }, + { + "name": "DENT D471", + "title": "Orth Mng Dev Defrmty" + }, + { + "name": "DENT D472", + "title": "Pediatric Dent Lect & Lab" + }, + { + "name": "DENT D473", + "title": "Principles of Periodontology II" + }, + { + "name": "DENT D477", + "title": "Clinical Nutrition" + }, + { + "name": "DENT D478", + "title": "Local Anesthesia and Pain Control" + }, + { + "name": "DENT D500", + "title": "Adv. Emergency Dentistry" + }, + { + "name": "DENT D504", + "title": "Medicine I" + }, + { + "name": "DENT D505", + "title": "Medicine" + }, + { + "name": "DENT D506", + "title": "Oral Pathology II" + }, + { + "name": "DENT D507", + "title": "Pharmacology" + }, + { + "name": "DENT D510", + "title": "Basic Interdisciplinary Implant" + }, + { + "name": "DENT D522", + "title": "Medical Emergencies" + }, + { + "name": "DENT D532", + "title": "Medicine I" + }, + { + "name": "DENT D534", + "title": "Gerontology" + }, + { + "name": "DENT D552", + "title": "Endodontology" + }, + { + "name": "DENT D553", + "title": "Restorative Dentistry V" + }, + { + "name": "DENT D554", + "title": "Removable Prosthodontics" + }, + { + "name": "DENT D556", + "title": "Fixed Prosthodontics" + }, + { + "name": "DENT D557", + "title": "Medicine I" + }, + { + "name": "DENT D560", + "title": "Operative Dentistry" + }, + { + "name": "DENT D564", + "title": "Medicine II" + }, + { + "name": "DENT D565", + "title": "Internal Medicine" + }, + { + "name": "DENT D566", + "title": "Oral Pediatrics" + }, + { + "name": "DENT D567", + "title": "Oral Radiology" + }, + { + "name": "DENT D568", + "title": "Oral Surgery" + }, + { + "name": "DENT D573", + "title": "Periodontal Therapy and Treatment Planning" + }, + { + "name": "DENT D578", + "title": "Local Anes/Pain Cont II" + }, + { + "name": "DENT D589", + "title": "Jr. Summer Clinic I" + }, + { + "name": "DENT D590", + "title": "Clin Prog in Oper Dent" + }, + { + "name": "DENT D591", + "title": "Jr. Practice of Dentistry" + }, + { + "name": "DENT D592", + "title": "Clin Prog in Endontology" + }, + { + "name": "DENT D593", + "title": "Clin Prog in Periodontgy" + }, + { + "name": "DENT D594", + "title": "Clin Prog in Oral Med" + }, + { + "name": "DENT D595", + "title": "Clin Prog in Prosthodon" + }, + { + "name": "DENT D596", + "title": "Clin Prog in Pedodontics" + }, + { + "name": "DENT D598", + "title": "Clin Prog in Oral Surg" + }, + { + "name": "DENT D599", + "title": "Jr. Summer Clinic II" + }, + { + "name": "DENT D600", + "title": "Senior Summer Clinic" + }, + { + "name": "DENT D603", + "title": "Adv. Emergency Dentistry" + }, + { + "name": "DENT D608", + "title": "Radiology" + }, + { + "name": "DENT D609", + "title": "Orthodontics" + }, + { + "name": "DENT D610", + "title": "Adv Interdis Implant" + }, + { + "name": "DENT D611", + "title": "Practice Management II" + }, + { + "name": "DENT D612", + "title": "Advanced Restorative Dentistry Lecture & Lab" + }, + { + "name": "DENT D620", + "title": "Dental Ethics" + }, + { + "name": "DENT D635", + "title": "Dental Jurisprudence" + }, + { + "name": "DENT D636", + "title": "Dental Public Health II" + }, + { + "name": "DENT D637", + "title": "Practice Management I" + }, + { + "name": "DENT D640", + "title": "Dental Gerontology" + }, + { + "name": "DENT D644", + "title": "Dentistry for Patients with Special Needs" + }, + { + "name": "DENT D654", + "title": "Removable Prosthodontics" + }, + { + "name": "DENT D658", + "title": "Fixed Prosthodontics" + }, + { + "name": "DENT D660", + "title": "Behavioral Science II" + }, + { + "name": "DENT D661", + "title": "Physical Diagnosis" + }, + { + "name": "DENT D662", + "title": "Restorative Dentistry VI" + }, + { + "name": "DENT D666", + "title": "Pediatric Dentistry" + }, + { + "name": "DENT D668", + "title": "Oral Surgery" + }, + { + "name": "DENT D671", + "title": "Ortho Consideration in General Dental Practice" + }, + { + "name": "DENT D673", + "title": "Perio Therapy/Trmt Plan" + }, + { + "name": "DENT D674", + "title": "Admissions Clinic I" + }, + { + "name": "DENT D675", + "title": "Emergency/Oral Surg. Cl." + }, + { + "name": "DENT D676", + "title": "Radiology Clinic I" + }, + { + "name": "DENT D691", + "title": "Orthodontics-Clinic" + }, + { + "name": "DENT D692", + "title": "Endodontology-Clinic" + }, + { + "name": "DENT D693", + "title": "Periodontology Clinic" + }, + { + "name": "DENT D694", + "title": "Oral Diagnosis-Clinic" + }, + { + "name": "DENT D695", + "title": "Removable Pros-Clinic" + }, + { + "name": "DENT D696", + "title": "Pediatric Dent-Clinic" + }, + { + "name": "DENT D697", + "title": "Restor Dent Clinic Jr" + }, + { + "name": "DENT D699", + "title": "Fixed Pros-Clinic" + }, + { + "name": "DENT D700", + "title": "Summer Clinic II" + }, + { + "name": "DENT D707", + "title": "Pharmacology" + }, + { + "name": "DENT D708", + "title": "Radiology" + }, + { + "name": "DENT D720", + "title": "Dental Ethics" + }, + { + "name": "DENT D721", + "title": "Dent Pers w/ Disabilities" + }, + { + "name": "DENT D735", + "title": "Dental Jurisprudence" + }, + { + "name": "DENT D736", + "title": "Adv Rstrt Dent Lect/Lab" + }, + { + "name": "DENT D737", + "title": "Practice Management II" + }, + { + "name": "DENT D738", + "title": "Advanced Case Mgmt" + }, + { + "name": "DENT D771", + "title": "Orthodontics Lecture" + }, + { + "name": "DENT D790", + "title": "Sr. Pract of Dentistry" + }, + { + "name": "DENT D801", + "title": "Science in Dental Practice II" + }, + { + "name": "DENT D808", + "title": "Comprehensive Care" + }, + { + "name": "DENT D809", + "title": "Practice Management III" + }, + { + "name": "DENT D810", + "title": "DPH III: Community Health Engagement" + }, + { + "name": "DENT D813", + "title": "Extended Clinic" + }, + { + "name": "DENT D833", + "title": "Dental Ethics" + }, + { + "name": "DENT D835", + "title": "Dental Jurisprudence" + }, + { + "name": "DENT D852", + "title": "Dent/Persns w/ Disability" + }, + { + "name": "DENT D854", + "title": "Removable Prosthodontics" + }, + { + "name": "DENT D870", + "title": "Pain Control & Diagnosis" + }, + { + "name": "DENT D871", + "title": "Intro Orthod Speclty" + }, + { + "name": "DENT D874", + "title": "Admissions Clinic II" + }, + { + "name": "DENT D875", + "title": "Emergency/Oral Surg. Cl." + }, + { + "name": "DENT D876", + "title": "Radiology Clinic II" + }, + { + "name": "DENT D891", + "title": "Orthodontics-Clinic" + }, + { + "name": "DENT D892", + "title": "Endodontology-Clinic" + }, + { + "name": "DENT D893", + "title": "Periodontology-Clinic" + }, + { + "name": "DENT D894", + "title": "Oral Diagnosis-Clinic" + }, + { + "name": "DENT D896", + "title": "Pediatric Dent-Clinic" + }, + { + "name": "DENT D897", + "title": "Restor Dent Clinic Sr" + }, + { + "name": "DENT D898", + "title": "Oral Surgery-Clinic" + }, + { + "name": "DENT D899", + "title": "Practice of Dentistry III" + }, + { + "name": "DENT D900", + "title": "Practice of Dentistry IV" + }, + { + "name": "DENT D901", + "title": "Life Cycle/Carbon Ft Prt" + }, + { + "name": "DENT D902", + "title": "Out Pt-Oral & Maxi Surg II" + }, + { + "name": "DENT D903", + "title": "Practice of Dentistry V" + }, + { + "name": "DENT D904", + "title": "Implants in Gen. Dent II" + }, + { + "name": "DENT D905", + "title": "Rotary Instrumentation" + }, + { + "name": "DENT D906", + "title": "Gros Anat/Neuroanatomy" + }, + { + "name": "DENT D907", + "title": "Trmt Mod/Complex Case" + }, + { + "name": "DENT D908", + "title": "Surg Oral Implantology" + }, + { + "name": "DENT D909", + "title": "Adv Hospital Dentistry" + }, + { + "name": "DENT D910", + "title": "Oral Cancer Detectn Offc" + }, + { + "name": "DENT D911", + "title": "Oral Pathology/Clin Prt" + }, + { + "name": "DENT D912", + "title": "Perio Pract/Gen'l Dent." + }, + { + "name": "DENT D913", + "title": "Clinical Research Part." + }, + { + "name": "DENT D914", + "title": "Hands-On/Ceramic Prep" + }, + { + "name": "DENT D915", + "title": "Dent Practice Adm." + }, + { + "name": "DENT D916", + "title": "Pre-Prosth Crown Length" + }, + { + "name": "DENT D917", + "title": "Dental MBA" + }, + { + "name": "DENT D918", + "title": "TMJ Considerations" + }, + { + "name": "DENT D919", + "title": "OMS Instrument/Case Pres" + }, + { + "name": "DENT D920", + "title": "Bacteriology of Caries" + }, + { + "name": "DENT D921", + "title": "Current Restorative Lit." + }, + { + "name": "DENT D922", + "title": "Adv Imaging in Dentistry" + }, + { + "name": "DENT D923", + "title": "Bus Management Dent Prac" + }, + { + "name": "DENT D924", + "title": "Ortho in Daily Practice" + }, + { + "name": "DENT D925", + "title": "Global Dental Hlth Care" + }, + { + "name": "DENT D926", + "title": "Topics in Periodontology" + }, + { + "name": "DENT D927", + "title": "Surgl Place/Prosthesis" + }, + { + "name": "DENT D928", + "title": "Infectious Disease Cntl" + }, + { + "name": "DENT D929", + "title": "Exp Private Practice" + }, + { + "name": "DENT D930", + "title": "Adv Communication Skills" + }, + { + "name": "DENT D931", + "title": "Rev. of Current Concepts" + }, + { + "name": "DENT D932", + "title": "Perio Honors Program" + }, + { + "name": "DENT D933", + "title": "Business of Dentistry" + }, + { + "name": "DENT D934", + "title": "Tooth #8 Ceramic Prep" + }, + { + "name": "DENT D935", + "title": "Porcelain Restorations" + }, + { + "name": "DENT D936", + "title": "Public Health Adm Extern" + }, + { + "name": "DENT D937", + "title": "TMJ - TMD" + }, + { + "name": "DENT D938", + "title": "Periodontal Microbiology" + }, + { + "name": "DENT D939", + "title": "Intro Healthcare Org" + }, + { + "name": "DENT D940", + "title": "Dental Community Outreac" + }, + { + "name": "DENT D941", + "title": "Adv. Comp Case Analysis" + }, + { + "name": "DENT D942", + "title": "Inlay/Onlay System" + }, + { + "name": "DENT D943", + "title": "Diag.Testing in Dentstry" + }, + { + "name": "DENT D944", + "title": "Ltd Tooth Mvmt/Perio-Pro" + }, + { + "name": "DENT D945", + "title": "Pediatric Dent Lit Rev" + }, + { + "name": "DENT D946", + "title": "Hospital Dentistry" + }, + { + "name": "DENT D947", + "title": "Clinical Therapeutics" + }, + { + "name": "DENT D948", + "title": "Cult Div/Geriatric Care" + }, + { + "name": "DENT D949", + "title": "Out Pt-Oral & Maxillo Surg" + }, + { + "name": "DENT D950", + "title": "Research Methods" + }, + { + "name": "DENT D951", + "title": "Conservative Mgt-Caries" + }, + { + "name": "DENT D952", + "title": "Head & Neck Anatomy" + }, + { + "name": "DENT D953", + "title": "Man Pt w/ Blood-Borne Inf" + }, + { + "name": "DENT D954", + "title": "Externship/Oral Surgery" + }, + { + "name": "DENT D956", + "title": "Adv Dent Literature Rev" + }, + { + "name": "DENT D960", + "title": "Adv Cardiac Life Support" + }, + { + "name": "DENT D961", + "title": "Gen Implant Practice" + }, + { + "name": "DENT D962", + "title": "Health Center Rotation" + }, + { + "name": "DENT D963", + "title": "Be a Diagnostician" + }, + { + "name": "DENT D964", + "title": "Apps/Removable Prosth" + }, + { + "name": "DENT D965", + "title": "Mngt of Ortho Cases" + }, + { + "name": "DENT D966", + "title": "A Review You'll Get" + }, + { + "name": "DENT D967", + "title": "Trmt Plan Perio/Prosth" + }, + { + "name": "DENT D968", + "title": "Operative Board Prep" + }, + { + "name": "DENT D970", + "title": "Faculty Clinical Operations" + }, + { + "name": "DENT D971", + "title": "Summer Clinical Operations" + }, + { + "name": "DENT D982", + "title": "Operative Dentistry II" + }, + { + "name": "DENT D983", + "title": "Dental Public Health Science" + }, + { + "name": "DENT D984", + "title": "Endodontics" + }, + { + "name": "DENT D985", + "title": "Oral Maxillofacial Pathology Medicine Surgery" + }, + { + "name": "DENT D986", + "title": "Pre-Clinic Orthodontics" + }, + { + "name": "DENT D988", + "title": "Pediatric Dentistry" + }, + { + "name": "DENT D989", + "title": "Pediatric Dentistry" + }, + { + "name": "DENT D990", + "title": "Periodontology" + }, + { + "name": "DENT D991", + "title": "Orthodontics" + }, + { + "name": "DENT D992", + "title": "O M P M S" + }, + { + "name": "DENT D993", + "title": "Operative Dentistry Clinic" + }, + { + "name": "DENT D994", + "title": "Fixed Prosthodontics I" + }, + { + "name": "DENT D995", + "title": "Fixed Prosthodontics II" + }, + { + "name": "DENT D996", + "title": "Removable Prosthod I" + }, + { + "name": "DENT D997", + "title": "Removable Prosthodon II" + }, + { + "name": "DENT D998", + "title": "Endodontics I" + }, + { + "name": "DENT D999", + "title": "Endodontic II" + }, + { + "name": "MEDS 5003", + "title": "Fundamentals of Biochem" + }, + { + "name": "MEDS 5004", + "title": "Fundamentals of Physiology" + }, + { + "name": "MEDS 5006", + "title": "Microbio and Immunology" + }, + { + "name": "MEDS 5007", + "title": "Human Anatomy" + }, + { + "name": "MEDS 5008", + "title": "Medical Pharmacology" + }, + { + "name": "MEDS 5009", + "title": "Biochemistry of Life Systems" + }, + { + "name": "MEDS 5010", + "title": "Special Topics in Medicine" + }, + { + "name": "MEDS 5011", + "title": "The Application of Physical Principles to the Understanding and Practice of Medicine" + }, + { + "name": "MEDS 8004", + "title": "Macromolecules" + }, + { + "name": "MEDS 8010", + "title": "Seminar Clinical Res" + }, + { + "name": "MEDS 8020", + "title": "Crit Lit Clin Transl Res" + }, + { + "name": "MEDS 8030", + "title": "Grant Writing: Clin Res" + }, + { + "name": "MEDS 8051", + "title": "Intro to Biostatistics" + }, + { + "name": "MEDS 9995", + "title": "Res Prjct Clin/Trnsl Med" + }, + { + "name": "MEDS M001", + "title": "1st Yr Med School Prog" + }, + { + "name": "MEDS M002", + "title": "2nd Yr Med School Prog" + }, + { + "name": "MEDS M003", + "title": "3rd Yr Med School Prog" + }, + { + "name": "MEDS M004", + "title": "4th Yr Med School Prog" + }, + { + "name": "MEDS M100", + "title": "Nutrition and Health" + }, + { + "name": "MEDS M101", + "title": "Fundamentals of Anatomy" + }, + { + "name": "MEDS M102", + "title": "Fundamentals of Medicine 1" + }, + { + "name": "MEDS M103", + "title": "Biological Systems I: Cardiovascular, Blood, Respiratory and Renal Systems" + }, + { + "name": "MEDS M104", + "title": "Biological Systems II: Gastrointestinal, Endocrine, Bone and Reproductive Systems" + }, + { + "name": "MEDS M105", + "title": "Biological Systems III: Nervous and Musculoskeletal Systems" + }, + { + "name": "MEDS M106", + "title": "Biological Systems IV: Inflammation, Immune System and Skin" + }, + { + "name": "MEDS M107", + "title": "Doctoring 1" + }, + { + "name": "MEDS M110", + "title": "Clinical Immun Topics" + }, + { + "name": "MEDS M120", + "title": "Sexual Health" + }, + { + "name": "MEDS M130", + "title": "Reflections on Gross Anatomy" + }, + { + "name": "MEDS M139", + "title": "Medical Sign Language" + }, + { + "name": "MEDS M141", + "title": "Intro to Medical Ethics" + }, + { + "name": "MEDS M143", + "title": "Medical Humanities" + }, + { + "name": "MEDS M146", + "title": "Intro Global Health" + }, + { + "name": "MEDS M149", + "title": "Basic Medicial Spanish" + }, + { + "name": "MEDS M150", + "title": "Introductory Elective" + }, + { + "name": "MEDS M170", + "title": "Advanced Medical Spanish" + }, + { + "name": "MEDS M189", + "title": "Intro Disaster Response" + }, + { + "name": "MEDS M191", + "title": "Intro Disaster Response II" + }, + { + "name": "MEDS M193", + "title": "Introduction to Bioethics" + }, + { + "name": "MEDS M200", + "title": "Community Hosp Svc" + }, + { + "name": "MEDS M210", + "title": "Diseases of Renal/Endo/Repro" + }, + { + "name": "MEDS M212", + "title": "Microbiology/Inf. Dis." + }, + { + "name": "MEDS M214", + "title": "Diseases of Cardio/Resp" + }, + { + "name": "MEDS M217", + "title": "Doctoring 2" + }, + { + "name": "MEDS M220", + "title": "Epidemiology Journal Club" + }, + { + "name": "MEDS M222", + "title": "Diseases IV: GI/Hem-Onc/MS" + }, + { + "name": "MEDS M224", + "title": "Diseases III: CNS" + }, + { + "name": "MEDS M225", + "title": "Disability Through the Lens of Self-Reflection" + }, + { + "name": "MEDS M226", + "title": "Arts Workshop" + }, + { + "name": "MEDS M227", + "title": "Fundamentals of Improv Theater" + }, + { + "name": "MEDS M233", + "title": "Bridging Gap Clerkship" + }, + { + "name": "MEDS M235", + "title": "History of Medicine" + }, + { + "name": "MEDS M240", + "title": "An Exploration of Narrative Medicine" + }, + { + "name": "MEDS M241", + "title": "An Exploration of Meaning through Stories, Poems, and Plays" + }, + { + "name": "MEDS M243", + "title": "Humans of North Philly: Portraits from the Streets" + }, + { + "name": "MEDS M245", + "title": "HIV Prevention Corps" + }, + { + "name": "MEDS M248", + "title": "Business of Medicine" + }, + { + "name": "MEDS M260", + "title": "My Daughter's Kitchen comes to Medical School" + }, + { + "name": "MEDS M265", + "title": "Mind-Body Medicine Elective" + }, + { + "name": "MEDS M270", + "title": "Artful Thinking" + }, + { + "name": "MEDS M275", + "title": "Cannabinoids (Medicinal Marijuana)" + }, + { + "name": "MEDS M276", + "title": "Case Based Topics" + }, + { + "name": "MEDS M295", + "title": "Cmplmntry/Altern Med III" + }, + { + "name": "MEDS M296", + "title": "Cmplmntry/Altern Med I" + }, + { + "name": "MEDS M297", + "title": "Cmplmntry/Altern Med II" + }, + { + "name": "MEDS M298", + "title": "Independent Study/Research" + }, + { + "name": "MEDS M338", + "title": "Doctoring 3/OSCE" + }, + { + "name": "MEDS M411", + "title": "Community Health" + }, + { + "name": "MEDS M444", + "title": "Community Health" + }, + { + "name": "MEDS M494", + "title": "Doctoring Teaching Elective" + }, + { + "name": "MEDS M905", + "title": "International Med Elective" + }, + { + "name": "MEDS M906", + "title": "Research Elective" + }, + { + "name": "MEDS M908", + "title": "Scholarly Project" + }, + { + "name": "MEDS M909", + "title": "Interprofessional Healthcare Quality Improvement" + }, + { + "name": "MEDS M913", + "title": "Patient Safety/Quality" + }, + { + "name": "MEDS M990", + "title": "Health System Administration" + }, + { + "name": "MEDS M992", + "title": "Doctoring 4/Capstone" + }, + { + "name": "MEDS M995", + "title": "Medical Advocacy" + }, + { + "name": "MEDS M996", + "title": "Academic Medicine" + }, + { + "name": "MEDS M997", + "title": "Independent Study" + }, + { + "name": "SCES 2189", + "title": "Classroom Interactions" + }, + { + "name": "SCES 3146", + "title": "The Teaching of Science in Secondary Schools" + }, + { + "name": "SCES 4146", + "title": "Teaching Science in Secondary Schools II" + }, + { + "name": "SCES 4189", + "title": "Project-Based Instruction" + }, + { + "name": "SCES 5415", + "title": "Tchg Sci Sec Sch Tchrs" + }, + { + "name": "SCES 5713", + "title": "L&T Hi Sch Bio/Phys/Chem" + }, + { + "name": "SCES 5714", + "title": "L&T Mid Sch Bio/Phy/Chem" + }, + { + "name": "SCES 8726", + "title": "Demonstrations in Sci" + }, + { + "name": "SCES 8727", + "title": "Critical Iss in Math/Sci" + }, + { + "name": "SCES 8728", + "title": "Curr Pract in Math/Sci" + }, + { + "name": "SCES 9782", + "title": "Special Projects" + }, + { + "name": "SCES E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SCLP 1201", + "title": "Introduction to Visual Language, 3-D Design" + }, + { + "name": "SCLP 2202", + "title": "Intermediate 3-D" + }, + { + "name": "SCLP 2521", + "title": "Video Workshop" + }, + { + "name": "SCLP 2611", + "title": "Sculpture" + }, + { + "name": "SCLP 2621", + "title": "Sculpture: Rome" + }, + { + "name": "SCLP 2631", + "title": "Figure Modeling" + }, + { + "name": "SCLP 2632", + "title": "Installation" + }, + { + "name": "SCLP 2633", + "title": "Figure Modeling: Rome" + }, + { + "name": "SCLP 2641", + "title": "Mold-Making Technology" + }, + { + "name": "SCLP 3521", + "title": "Advanced Video" + }, + { + "name": "SCLP 3611", + "title": "Advanced Sculpture" + }, + { + "name": "SCLP 3612", + "title": "Advanced Sculpture" + }, + { + "name": "SCLP 3621", + "title": "Advanced Sculpture" + }, + { + "name": "SCLP 3622", + "title": "Advanced Sculpture" + }, + { + "name": "SCLP 3631", + "title": "Installation" + }, + { + "name": "SCLP 3641", + "title": "Mold Making Technology" + }, + { + "name": "SCLP 3721", + "title": "Public Art Projects" + }, + { + "name": "SCLP 3731", + "title": "Sculpture Techniques and Materials" + }, + { + "name": "SCLP 3741", + "title": "Junior Sculpture Seminar" + }, + { + "name": "SCLP 3751", + "title": "Sculpture Workshop" + }, + { + "name": "SCLP 4248", + "title": "3-D Workshop" + }, + { + "name": "SCLP 4249", + "title": "3-D Portfolio" + }, + { + "name": "SCLP 4611", + "title": "Senior Sculpture" + }, + { + "name": "SCLP 8183", + "title": "Graduate Projects: Sculpture" + }, + { + "name": "SCLP 8184", + "title": "Graduate Projects: Sculpture II" + }, + { + "name": "SCLP 8503", + "title": "Graduate Sculpture Seminar" + }, + { + "name": "SCLP 8513", + "title": "Graduate Sculpture Seminar II" + }, + { + "name": "SCLP E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SCLP T000", + "title": "Elective" + }, + { + "name": "SECE 3796", + "title": "Differentiated Literacy Instruction in the Disciplines, 7-12" + }, + { + "name": "SECE 4688", + "title": "Student Teaching in Secondary Education" + }, + { + "name": "SECE 4801", + "title": "Senior Seminar and Performance Assessment in Secondary Education" + }, + { + "name": "SECE 5471", + "title": "Literacy and Differentiation in the Academic Areas, 7-12" + }, + { + "name": "SECE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SBS 1104", + "title": "Nutrition and Health" + }, + { + "name": "SBS 1105", + "title": "Society, Drug, and Alcohol Perspectives" + }, + { + "name": "SBS 1106", + "title": "Human Sexuality" + }, + { + "name": "SBS 1114", + "title": "Cultural Nutrition" + }, + { + "name": "SBS 1124", + "title": "Cooking and Presenting Food Fundamentals" + }, + { + "name": "SBS 1201", + "title": "Contemporary Health Issues" + }, + { + "name": "SBS 2101", + "title": "Disease Prevention and Control" + }, + { + "name": "SBS 2103", + "title": "Health Psychology and Human Behavior" + }, + { + "name": "SBS 2104", + "title": "Nutrition in the Lifecycle" + }, + { + "name": "SBS 2105", + "title": "Nutrition and the Community" + }, + { + "name": "SBS 2201", + "title": "Health Communication" + }, + { + "name": "SBS 2203", + "title": "AIDS and Society" + }, + { + "name": "SBS 2204", + "title": "Diet and Weight Management" + }, + { + "name": "SBS 2205", + "title": "Coping with Life Stress Workshop" + }, + { + "name": "SBS 2211", + "title": "Communication in Health Care Settings" + }, + { + "name": "SBS 2216", + "title": "Ethnicity, Culture and Health" + }, + { + "name": "SBS 2301", + "title": "Contemporary Slavery and Public Health" + }, + { + "name": "SBS 2302", + "title": "Maternal, Child, and Adolescent Health" + }, + { + "name": "SBS 2304", + "title": "HEART Peer Educator Training" + }, + { + "name": "SBS 3103", + "title": "Counseling Techniques for Health Professionals " + }, + { + "name": "SBS 3104", + "title": "Professional Seminar" + }, + { + "name": "SBS 3105", + "title": "Fundamentals of Health Education" + }, + { + "name": "SBS 3185", + "title": "Internship I" + }, + { + "name": "SBS 3208", + "title": "International Health Study Abroad" + }, + { + "name": "SBS 3382", + "title": "Independent Study in Public Health" + }, + { + "name": "SBS 3496", + "title": "Community-Based Health Program Planning I" + }, + { + "name": "SBS 3596", + "title": "Community-Based Health Program Planning II" + }, + { + "name": "SBS 4185", + "title": "Internship II" + }, + { + "name": "SBS 4391", + "title": "Directed Research in Public Health" + }, + { + "name": "SBS 4991", + "title": "Honors Directed Research: Prevention Research in Public Health" + }, + { + "name": "SBS 5001", + "title": "Fundamentals of Public Health" + }, + { + "name": "SBS 5002", + "title": "Program Planning, Theory, and Practice" + }, + { + "name": "SBS 5004", + "title": "Understanding Stress and Change" + }, + { + "name": "SBS 5005", + "title": "International Health Studies Abroad" + }, + { + "name": "SBS 5009", + "title": "Risk Communication and Public Health" + }, + { + "name": "SBS 5015", + "title": "Public Health Nutrition" + }, + { + "name": "SBS 5102", + "title": "Theoretical Foundations of Health Behavior" + }, + { + "name": "SBS 5105", + "title": "Maternal and Child Health" + }, + { + "name": "SBS 5500", + "title": "Seminar in Current Issues in Public Health" + }, + { + "name": "SBS 8001", + "title": "Research Methods in Public Health" + }, + { + "name": "SBS 8002", + "title": "Research Seminar in Public Health" + }, + { + "name": "SBS 8005", + "title": "Health Promotion in Vulnerable Populations" + }, + { + "name": "SBS 8006", + "title": "Addictions and Dependencies" + }, + { + "name": "SBS 8009", + "title": "Health Psychology" + }, + { + "name": "SBS 8018", + "title": "Obesity: From Genes to Junk Food" + }, + { + "name": "SBS 8105", + "title": "Health Communication" + }, + { + "name": "SBS 8111", + "title": "Public Health Program Planning" + }, + { + "name": "SBS 9083", + "title": "Readings and Conference in Public Health" + }, + { + "name": "SBS 9189", + "title": "MPH Capstone Seminar" + }, + { + "name": "SBS 9289", + "title": "MPH Fieldwork I" + }, + { + "name": "SBS 9389", + "title": "MPH Fieldwork II" + }, + { + "name": "SBS 9994", + "title": "Preliminary Examinations" + }, + { + "name": "SBS 9996", + "title": "Masters Res in Pub Hlth" + }, + { + "name": "SBS 9998", + "title": "Dissertation Proposal Research" + }, + { + "name": "SBS 9999", + "title": "Dissertation Research" + }, + { + "name": "SBS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SBS L000", + "title": "Elective LL" + }, + { + "name": "SBS U000", + "title": "Elective UL" + }, + { + "name": "SSES 3278", + "title": "Methods and Materials in Secondary Social Studies" + }, + { + "name": "SSES 4278", + "title": "Teaching for Understanding in Secondary Social Studies" + }, + { + "name": "SSES 5465", + "title": "Meth & Matrls Sec Soc St" + }, + { + "name": "SSES 5466", + "title": "Teaching for Understanding in Secondary Social Studies" + }, + { + "name": "SSES E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SSWG 5000", + "title": "Special Topics in Social Work" + }, + { + "name": "SSWG 5001", + "title": "HBSE: Individuals and Families" + }, + { + "name": "SSWG 5002", + "title": "HBSE: Groups, Communities and Organizations" + }, + { + "name": "SSWG 5003", + "title": "Foundations in Social Work Research" + }, + { + "name": "SSWG 5005", + "title": "Social Welfare Policies and Services I" + }, + { + "name": "SSWG 5006", + "title": "Social Welfare Policies and Services II" + }, + { + "name": "SSWG 5007", + "title": "Social Justice: Foundation for Transformative Social Work" + }, + { + "name": "SSWG 5107", + "title": "Practice of Social Service Delivery I" + }, + { + "name": "SSWG 5108", + "title": "Practice of Social Service Delivery II" + }, + { + "name": "SSWG 5187", + "title": "Foundation Field Practicum I" + }, + { + "name": "SSWG 5188", + "title": "Foundation Field Practicum II" + }, + { + "name": "SSWG 5302", + "title": "Critical Thinking for Societal Transformation" + }, + { + "name": "SSWG 5309", + "title": "Societal Responses to Aging" + }, + { + "name": "SSWG 8000", + "title": "Special Topics in Social Work" + }, + { + "name": "SSWG 8010", + "title": "Special Topics in Social Work" + }, + { + "name": "SSWG 8101", + "title": "Clinical Practice with Individuals, Families, and Groups I" + }, + { + "name": "SSWG 8102", + "title": "Clinical Practice with Individuals, Families, and Groups II" + }, + { + "name": "SSWG 8107", + "title": "Macro Practice in Organizational, Community and Policy Arenas" + }, + { + "name": "SSWG 8108", + "title": "Thinking Economically" + }, + { + "name": "SSWG 8109", + "title": "Social Innovation and Entrepreneurship" + }, + { + "name": "SSWG 8111", + "title": "Legislative Advocacy" + }, + { + "name": "SSWG 8112", + "title": "Coalitions and Partnerships" + }, + { + "name": "SSWG 8113", + "title": "Resource and Grant Development for Human Services" + }, + { + "name": "SSWG 8114", + "title": "Supervision, Staff Management, and Staff Development in Human Service Organizations" + }, + { + "name": "SSWG 8115", + "title": "Leadership in Human Service and Social Change Organizations" + }, + { + "name": "SSWG 8116", + "title": "Grassroots Mobilization: In the US and Internationally" + }, + { + "name": "SSWG 8187", + "title": "Advanced Field Practicum I" + }, + { + "name": "SSWG 8188", + "title": "Advanced Field Practicum II" + }, + { + "name": "SSWG 8205", + "title": "Evaluation of Clinical Practice" + }, + { + "name": "SSWG 8207", + "title": "Social Work Research: Communities and Policy Arenas and Management/Planning" + }, + { + "name": "SSWG 8303", + "title": "Dynamics of Health, Health Care, and Health Systems" + }, + { + "name": "SSWG 8307", + "title": "Health/Mental Health Policy" + }, + { + "name": "SSWG 8403", + "title": "Children and Families in the Social Environment" + }, + { + "name": "SSWG 8407", + "title": "Policy on Families and Children" + }, + { + "name": "SSWG 8503", + "title": "Military Culture: The Service Member, Veteran and Family in the Social Environment" + }, + { + "name": "SSWG 8504", + "title": "Integrative Seminar" + }, + { + "name": "SSWG 8507", + "title": "Military Health Care, Policy and Community Response" + }, + { + "name": "SSWG 8603", + "title": "Advanced Human Behavior and the Social Environment - Gender and Sexuality through the Lifespan" + }, + { + "name": "SSWG 8607", + "title": "Advanced Policy - Gender and Sexuality" + }, + { + "name": "SSWG 8801", + "title": "Financial Management" + }, + { + "name": "SSWG 8803", + "title": "Emotional Disorders in Children and Adolescents" + }, + { + "name": "SSWG 8804", + "title": "Social Work with the Homeless" + }, + { + "name": "SSWG 8807", + "title": "HIV/AIDS and Social Work" + }, + { + "name": "SSWG 8809", + "title": "Child Welfare Policy" + }, + { + "name": "SSWG 8811", + "title": "Alcohol and Substance Abuse" + }, + { + "name": "SSWG 8814", + "title": "Loss and Grief" + }, + { + "name": "SSWG 8815", + "title": "Law and the Practice of Human Services" + }, + { + "name": "SSWG 8816", + "title": "Practice Consultation" + }, + { + "name": "SSWG 8818", + "title": "Supervision, Staff Development, and Training" + }, + { + "name": "SSWG 8823", + "title": "Psychodynamics of Race, Class and Culture" + }, + { + "name": "SSWG 8824", + "title": "Assessment and the DSM" + }, + { + "name": "SSWG 8826", + "title": "Aging HBSE" + }, + { + "name": "SSWG 8827", + "title": "Aging Policy" + }, + { + "name": "SSWG 8831", + "title": "Social Transformation" + }, + { + "name": "SSWG 9182", + "title": "Independent Study" + }, + { + "name": "SSWG 9282", + "title": "Independent Study" + }, + { + "name": "SSWG 9817", + "title": "Clinical Military Practice and the Invisible Wounds of War" + }, + { + "name": "SSWU 0822", + "title": "Human Behavior and the Photographic Image" + }, + { + "name": "SSWU 1002", + "title": "Communication in Social Work Practice" + }, + { + "name": "SSWU 2003", + "title": "The History and Values of Social Welfare" + }, + { + "name": "SSWU 2004", + "title": "Social Welfare in the United States" + }, + { + "name": "SSWU 2005", + "title": "Introduction to the Social Work Profession I" + }, + { + "name": "SSWU 2006", + "title": "Introduction to the Social Work Profession II" + }, + { + "name": "SSWU 2089", + "title": "Service Learning in the Social Work Profession" + }, + { + "name": "SSWU 3000", + "title": "Special Topics in Social Work" + }, + { + "name": "SSWU 3003", + "title": "History and Values of Social Welfare" + }, + { + "name": "SSWU 3004", + "title": "Social Welfare in the US" + }, + { + "name": "SSWU 3005", + "title": "Helping Processes in Social Work I" + }, + { + "name": "SSWU 3006", + "title": "Helping Processes in Social Work II" + }, + { + "name": "SSWU 3007", + "title": "Human Behavior in the Social Environment" + }, + { + "name": "SSWU 3009", + "title": "Human Behavior and the Social Environment: Communities and Organizations" + }, + { + "name": "SSWU 3010", + "title": "Special Topics in Social Work" + }, + { + "name": "SSWU 3011", + "title": "The Social Worker in the Group" + }, + { + "name": "SSWU 3015", + "title": "Lab for Helping Processes in Social Work I" + }, + { + "name": "SSWU 3016", + "title": "Lab for Helping Processes in Social Work II" + }, + { + "name": "SSWU 3096", + "title": "Institutional Racism" + }, + { + "name": "SSWU 4000", + "title": "Special Topics in Social Work" + }, + { + "name": "SSWU 4001", + "title": "Seminar in Social Work Practice" + }, + { + "name": "SSWU 4002", + "title": "Seminar in Social Work Practice" + }, + { + "name": "SSWU 4107", + "title": "BSW Field Seminar I" + }, + { + "name": "SSWU 4187", + "title": "Social Work Field Practicum I" + }, + { + "name": "SSWU 4287", + "title": "Social Work Field Practicum II" + }, + { + "name": "SSWU 4301", + "title": "Women and Social Policy" + }, + { + "name": "SSWU 4302", + "title": "Emotional Disorders in Children and Adolescents" + }, + { + "name": "SSWU 4303", + "title": "Social Work with the Homeless" + }, + { + "name": "SSWU 4304", + "title": "HIV/AIDS and Social Work: Prevention and Practice" + }, + { + "name": "SSWU 4305", + "title": "Health Care Policy" + }, + { + "name": "SSWU 4306", + "title": "Child Welfare Policy" + }, + { + "name": "SSWU 4307", + "title": "Alcohol and Substance Abuse" + }, + { + "name": "SSWU 4308", + "title": "Social Transformation" + }, + { + "name": "SSWU 4309", + "title": "Societal Responses to Aging" + }, + { + "name": "SSWU 4311", + "title": "Law and Practice of Human Services" + }, + { + "name": "SSWU 4312", + "title": "Loss and Grief " + }, + { + "name": "SSWU 4314", + "title": "Beyond the Binary: Intersections of Gender, Sexuality, and Health" + }, + { + "name": "SSWU 4396", + "title": "Introduction to Social Research" + }, + { + "name": "SSWU 4407", + "title": "Evaluating Programs and Practice in Social Work" + }, + { + "name": "SSWU 4482", + "title": "Independent Study in Social Work" + }, + { + "name": "SSWU E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SOC 0817", + "title": "Youth Cultures" + }, + { + "name": "SOC 0818", + "title": "Human Sexuality" + }, + { + "name": "SOC 0825", + "title": "Quantitative Methods in the Social Sciences" + }, + { + "name": "SOC 0829", + "title": "The History & Significance of Race in America" + }, + { + "name": "SOC 0831", + "title": "Immigration and the American Dream" + }, + { + "name": "SOC 0832", + "title": "Politics of Identity in America" + }, + { + "name": "SOC 0833", + "title": "Race & Poverty in the Americas" + }, + { + "name": "SOC 0835", + "title": "Ethnicity and the Immigrant Experience in the U.S." + }, + { + "name": "SOC 0848", + "title": "American Revolutions" + }, + { + "name": "SOC 0849", + "title": "Dissent in America" + }, + { + "name": "SOC 0851", + "title": "Gender in America" + }, + { + "name": "SOC 0857", + "title": "Sport & Leisure in American Society" + }, + { + "name": "SOC 0858", + "title": "The American Economy" + }, + { + "name": "SOC 0859", + "title": "The Making of American Society: Melting Pot or Culture Wars?" + }, + { + "name": "SOC 0861", + "title": "Urban Dynamics: Global, Regional, and Local Connections" + }, + { + "name": "SOC 0862", + "title": "Development & Globalization" + }, + { + "name": "SOC 0918", + "title": "Honors Human Sexuality" + }, + { + "name": "SOC 0925", + "title": "Honors Quantitative Methods in the Social Sciences" + }, + { + "name": "SOC 0929", + "title": "Honors: The History & Significance of Race in America" + }, + { + "name": "SOC 0935", + "title": "Honors Ethnicity and the Immigrant Experience in the U.S." + }, + { + "name": "SOC 0962", + "title": "Honors Fate, Hope, and Action: Globalization Today" + }, + { + "name": "SOC 1002", + "title": "Professional Development for Sociology Majors" + }, + { + "name": "SOC 1167", + "title": "Social Statistics" + }, + { + "name": "SOC 1176", + "title": "Introduction to Sociology" + }, + { + "name": "SOC 1277", + "title": "Comparative Societal Development" + }, + { + "name": "SOC 1376", + "title": "The Sociology of Race and Racism" + }, + { + "name": "SOC 1396", + "title": "The Sociology of Race and Racism" + }, + { + "name": "SOC 1476", + "title": "American Ethnicity" + }, + { + "name": "SOC 1496", + "title": "American Ethnicity" + }, + { + "name": "SOC 1576", + "title": "Introduction to Sociology for Health Professions" + }, + { + "name": "SOC 1676", + "title": "Men and Women in American Society" + }, + { + "name": "SOC 1696", + "title": "Men and Women in American Society" + }, + { + "name": "SOC 1876", + "title": "Introduction to Sociology" + }, + { + "name": "SOC 1967", + "title": "Honors Social Statistics" + }, + { + "name": "SOC 1976", + "title": "Honors Introduction to Sociology" + }, + { + "name": "SOC 1977", + "title": "Honors Comparative Societal Development" + }, + { + "name": "SOC 2105", + "title": "Echoes of Terror" + }, + { + "name": "SOC 2111", + "title": "Sociology of Sports" + }, + { + "name": "SOC 2122", + "title": "Global Sports" + }, + { + "name": "SOC 2128", + "title": "Men and Masculinity" + }, + { + "name": "SOC 2130", + "title": "Selected Topics in Sociology" + }, + { + "name": "SOC 2145", + "title": "Marriage and the Family" + }, + { + "name": "SOC 2163", + "title": "Area Studies: Latin American Development" + }, + { + "name": "SOC 2166", + "title": "Money: Who Has It, Who Doesn't, Why It Matters" + }, + { + "name": "SOC 2168", + "title": "Sociology of Popular Culture" + }, + { + "name": "SOC 2171", + "title": "Sociology of Law" + }, + { + "name": "SOC 2176", + "title": "Is College Worth It? Student Debt and Student Gain" + }, + { + "name": "SOC 2179", + "title": "Racial and Ethnic Stratification" + }, + { + "name": "SOC 2522", + "title": "Sociology of the Self" + }, + { + "name": "SOC 2530", + "title": "Selected Topics in Medical Sociology" + }, + { + "name": "SOC 2545", + "title": "Food for Thought: Sociological Thinking About Food" + }, + { + "name": "SOC 2552", + "title": "Health and Disease in American Society" + }, + { + "name": "SOC 2553", + "title": "Sociology of Aging" + }, + { + "name": "SOC 2555", + "title": "Sociology on Drugs" + }, + { + "name": "SOC 2565", + "title": "Race, Science, Health, and Medicine" + }, + { + "name": "SOC 2572", + "title": "Sex & Society" + }, + { + "name": "SOC 2575", + "title": "Science, Technology & Society" + }, + { + "name": "SOC 2922", + "title": "Honors Global Sports" + }, + { + "name": "SOC 2979", + "title": "Honors Racial & Ethnic Stratification" + }, + { + "name": "SOC 3082", + "title": "Independent Study" + }, + { + "name": "SOC 3176", + "title": "Sociology of Education" + }, + { + "name": "SOC 3185", + "title": "Internship in Sociology" + }, + { + "name": "SOC 3201", + "title": "Statistical Methods in Sociology" + }, + { + "name": "SOC 3207", + "title": "People and Places of Philadelphia" + }, + { + "name": "SOC 3208", + "title": "Globalization, Development, and Labor in East Asia" + }, + { + "name": "SOC 3209", + "title": "Immigrant America: Belonging and Integration" + }, + { + "name": "SOC 3214", + "title": "Latinos, Race and Ethnicity" + }, + { + "name": "SOC 3218", + "title": "Socialization" + }, + { + "name": "SOC 3219", + "title": "Understanding Globalization" + }, + { + "name": "SOC 3221", + "title": "Global Development" + }, + { + "name": "SOC 3222", + "title": "Sociology of Religion" + }, + { + "name": "SOC 3223", + "title": "East to America: The Sociology of Asian Americans" + }, + { + "name": "SOC 3230", + "title": "Selected Topic in Sociology" + }, + { + "name": "SOC 3231", + "title": "Jerusalem: The Politics of Space" + }, + { + "name": "SOC 3240", + "title": "Selected Topic in Sociology" + }, + { + "name": "SOC 3242", + "title": "Constructing Race and Ethnicity" + }, + { + "name": "SOC 3243", + "title": "Social Movements and Conflict" + }, + { + "name": "SOC 3244", + "title": "Computers, the Internet and Human Interaction" + }, + { + "name": "SOC 3245", + "title": "Comparative Family Studies" + }, + { + "name": "SOC 3246", + "title": "Theories of Identity" + }, + { + "name": "SOC 3247", + "title": "Ideology and Social Change in Japan" + }, + { + "name": "SOC 3249", + "title": "Social Inequality" + }, + { + "name": "SOC 3250", + "title": "Selected Topic in Sociology" + }, + { + "name": "SOC 3251", + "title": "Urban Sociology" + }, + { + "name": "SOC 3253", + "title": "Housing and Inequality" + }, + { + "name": "SOC 3256", + "title": "Political Sociology" + }, + { + "name": "SOC 3258", + "title": "Women and Work" + }, + { + "name": "SOC 3259", + "title": "Women and Poverty" + }, + { + "name": "SOC 3261", + "title": "Research Design and Methods" + }, + { + "name": "SOC 3267", + "title": "Sociology of Music: Nation, Race, Class and Gender in Argentina and Brazil" + }, + { + "name": "SOC 3275", + "title": "The Cultural Study of Music: Understanding Society through Popular Music" + }, + { + "name": "SOC 3396", + "title": "Development of Sociological Thought" + }, + { + "name": "SOC 3430", + "title": "Selected Topics in Sociology" + }, + { + "name": "SOC 3511", + "title": "Environmental Sociology: The End of the World as We Know It?" + }, + { + "name": "SOC 3521", + "title": "Global Health" + }, + { + "name": "SOC 3525", + "title": "Urban Health" + }, + { + "name": "SOC 3530", + "title": "Selected Topics in Medical Sociology" + }, + { + "name": "SOC 3546", + "title": "Sexuality and Gender" + }, + { + "name": "SOC 3559", + "title": "Health and Reproduction" + }, + { + "name": "SOC 3565", + "title": "Sociology of the Body" + }, + { + "name": "SOC 3571", + "title": "Methods in Program Evaluation" + }, + { + "name": "SOC 3575", + "title": "Population Studies" + }, + { + "name": "SOC 3582", + "title": "Independent Study in Medical Sociology" + }, + { + "name": "SOC 3585", + "title": "Internship in Medical Sociology" + }, + { + "name": "SOC 3930", + "title": "Honors Special Topics" + }, + { + "name": "SOC 3931", + "title": "Honors - Jerusalem: The Politics of Space" + }, + { + "name": "SOC 3945", + "title": "Honors Comparative Kinship Studies" + }, + { + "name": "SOC 3947", + "title": "Honors Ideology & Social Change in Japan" + }, + { + "name": "SOC 4001", + "title": "Qualitative Research" + }, + { + "name": "SOC 4002", + "title": "Data Analysis" + }, + { + "name": "SOC 4096", + "title": "Senior Seminar" + }, + { + "name": "SOC 5211", + "title": "Statistical Methods in Sociology" + }, + { + "name": "SOC 5311", + "title": "Socialization" + }, + { + "name": "SOC 5321", + "title": "Sexuality and Gender" + }, + { + "name": "SOC 5331", + "title": "Urban Sociology" + }, + { + "name": "SOC 5341", + "title": "Political Sociology" + }, + { + "name": "SOC 5351", + "title": "Sociology of the Environment" + }, + { + "name": "SOC 5361", + "title": "Social Movements & Social Conflict" + }, + { + "name": "SOC 5371", + "title": "Health and Disease in American Society" + }, + { + "name": "SOC 5411", + "title": "Class in Modern Society" + }, + { + "name": "SOC 5510", + "title": "Selected Topics in Sociology" + }, + { + "name": "SOC 5520", + "title": "Selected Topics of Sociology" + }, + { + "name": "SOC 5530", + "title": "Selected Topics in Sociology" + }, + { + "name": "SOC 8011", + "title": "Logic of Inquiry" + }, + { + "name": "SOC 8111", + "title": "Classical Social Theory" + }, + { + "name": "SOC 8211", + "title": "Inferential and Multivariate Statistics" + }, + { + "name": "SOC 8221", + "title": "Qualitative Methods" + }, + { + "name": "SOC 8231", + "title": "Demography & Immigration" + }, + { + "name": "SOC 8241", + "title": "The Ethics of Social Research" + }, + { + "name": "SOC 8311", + "title": "Sociology of Education" + }, + { + "name": "SOC 8321", + "title": "Political Sociology" + }, + { + "name": "SOC 8331", + "title": "Race and Ethnicity" + }, + { + "name": "SOC 8341", + "title": "Sociology of Kinship" + }, + { + "name": "SOC 8351", + "title": "Complex Organizations" + }, + { + "name": "SOC 8361", + "title": "Urban Sociology" + }, + { + "name": "SOC 8371", + "title": "Sociology of Culture" + }, + { + "name": "SOC 8381", + "title": "Social Inequality" + }, + { + "name": "SOC 8391", + "title": "Medical Sociology" + }, + { + "name": "SOC 8401", + "title": "Sexuality and Gender" + }, + { + "name": "SOC 8411", + "title": "Gender and Body" + }, + { + "name": "SOC 8421", + "title": "Urban Health" + }, + { + "name": "SOC 8431", + "title": "Globalization and Development" + }, + { + "name": "SOC 8510", + "title": "Special Departmental Seminar" + }, + { + "name": "SOC 8620", + "title": "Departmental Seminar" + }, + { + "name": "SOC 8711", + "title": "Symposium in Sociology" + }, + { + "name": "SOC 8721", + "title": "Symposium in Sociology" + }, + { + "name": "SOC 8731", + "title": "Teaching of Sociology" + }, + { + "name": "SOC 8741", + "title": "Teaching of Sociology" + }, + { + "name": "SOC 8751", + "title": "Introduction to Computing" + }, + { + "name": "SOC 9111", + "title": "Contemporary Sociological Theory" + }, + { + "name": "SOC 9121", + "title": "Advanced Sociological Theory" + }, + { + "name": "SOC 9131", + "title": "Theories of Identity" + }, + { + "name": "SOC 9141", + "title": "Theories of Globalization" + }, + { + "name": "SOC 9211", + "title": "Graduate Data Analysis" + }, + { + "name": "SOC 9221", + "title": "Theory and Practice of Statistical Sampling" + }, + { + "name": "SOC 9231", + "title": "Methodology of Social Surveys" + }, + { + "name": "SOC 9241", + "title": "Qualitative Data Analysis" + }, + { + "name": "SOC 9291", + "title": "Departmental Seminar in Research Methods" + }, + { + "name": "SOC 9311", + "title": "Immigration and Inequality" + }, + { + "name": "SOC 9321", + "title": "Theories of Race and Racism" + }, + { + "name": "SOC 9382", + "title": "Independent Study Progm" + }, + { + "name": "SOC 9385", + "title": "Internship in Social Research" + }, + { + "name": "SOC 9386", + "title": "Internship in Social Research - Part II" + }, + { + "name": "SOC 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "SOC 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "SOC 9999", + "title": "Dissertation Research" + }, + { + "name": "SOC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SOC F000", + "title": "* See Statement Below" + }, + { + "name": "SOC L000", + "title": "Elective LL" + }, + { + "name": "SOC P000", + "title": "Elective P" + }, + { + "name": "SOC U000", + "title": "Elective UL" + }, + { + "name": "SPAN 0815", + "title": "Language in Society" + }, + { + "name": "SPAN 0826", + "title": "Bilingual Communities" + }, + { + "name": "SPAN 0831", + "title": "Immigration and the American Dream" + }, + { + "name": "SPAN 0837", + "title": "Eating Cultures" + }, + { + "name": "SPAN 0854", + "title": "Latino Immigration" + }, + { + "name": "SPAN 0868", + "title": "World Society in Literature & Film" + }, + { + "name": "SPAN 0926", + "title": "Honors Bilingual Communities" + }, + { + "name": "SPAN 0931", + "title": "Honors Immigration and the American Dream" + }, + { + "name": "SPAN 0937", + "title": "Honors Eating Cultures" + }, + { + "name": "SPAN 0968", + "title": "Honors World Society in Literature & Film" + }, + { + "name": "SPAN 1001", + "title": "Basic I" + }, + { + "name": "SPAN 1002", + "title": "Basic II" + }, + { + "name": "SPAN 1003", + "title": "Intermediate" + }, + { + "name": "SPAN 1011", + "title": "Heritage Spanish I" + }, + { + "name": "SPAN 1076", + "title": "Intensive Practice in the Four Skills" + }, + { + "name": "SPAN 1901", + "title": "Honors Basic I" + }, + { + "name": "SPAN 1902", + "title": "Honors Basic II" + }, + { + "name": "SPAN 1903", + "title": "Honors Intermediate" + }, + { + "name": "SPAN 2001", + "title": "Conversational Review" + }, + { + "name": "SPAN 2002", + "title": "Hispanic Readings" + }, + { + "name": "SPAN 2011", + "title": "Spanish for Heritage and Bilingual Speakers" + }, + { + "name": "SPAN 2096", + "title": "Composition" + }, + { + "name": "SPAN 2098", + "title": "Advanced Intensive Practice in the Four Skills" + }, + { + "name": "SPAN 2201", + "title": "Catalan Language for Spanish Speakers" + }, + { + "name": "SPAN 2901", + "title": "Honors Conversational Review" + }, + { + "name": "SPAN 2902", + "title": "Honors Hispanic Readings" + }, + { + "name": "SPAN 3001", + "title": "Advanced Composition & Conversation" + }, + { + "name": "SPAN 3002", + "title": "Hispanic Readings II" + }, + { + "name": "SPAN 3003", + "title": "Advanced Grammar for Communication" + }, + { + "name": "SPAN 3096", + "title": "Advanced Analysis and Writing Skills" + }, + { + "name": "SPAN 3121", + "title": "Introduction to the Literature of Spain" + }, + { + "name": "SPAN 3141", + "title": "Introduction to the Literature of Latin America" + }, + { + "name": "SPAN 3142", + "title": "Puerto Rican Readings" + }, + { + "name": "SPAN 3160", + "title": "Special Topics I" + }, + { + "name": "SPAN 3201", + "title": "Catalan Culture and Civilization" + }, + { + "name": "SPAN 3204", + "title": "Latin America through Film" + }, + { + "name": "SPAN 3221", + "title": "The Cultures of Spain" + }, + { + "name": "SPAN 3222", + "title": "Spain through Film" + }, + { + "name": "SPAN 3241", + "title": "The Cultures of Latin America" + }, + { + "name": "SPAN 3243", + "title": "The Culture of Puerto Rico" + }, + { + "name": "SPAN 3261", + "title": "The Hispanic World" + }, + { + "name": "SPAN 3401", + "title": "Translation Skills" + }, + { + "name": "SPAN 3402", + "title": "Interpretation Skills in Translation" + }, + { + "name": "SPAN 3501", + "title": "Spanish for Business Professions" + }, + { + "name": "SPAN 3502", + "title": "Business Spanish I" + }, + { + "name": "SPAN 3503", + "title": "Business Spanish II" + }, + { + "name": "SPAN 3504", + "title": "Advanced Business Translation and Interpretation" + }, + { + "name": "SPAN 3601", + "title": "Spanish for Health Professions" + }, + { + "name": "SPAN 3602", + "title": "Medical Spanish" + }, + { + "name": "SPAN 3701", + "title": "Spanish for the Legal Professions" + }, + { + "name": "SPAN 3801", + "title": "Spanish for Professionals in Criminal Justice and Social Services" + }, + { + "name": "SPAN 3960", + "title": "Honors Special Topics" + }, + { + "name": "SPAN 3996", + "title": "Honors Advanced Analysis and Writing Skills" + }, + { + "name": "SPAN 4020", + "title": "Special Topics II" + }, + { + "name": "SPAN 4060", + "title": "Special Topics" + }, + { + "name": "SPAN 4083", + "title": "Directed Readings" + }, + { + "name": "SPAN 4121", + "title": "Survey of Spanish Literature" + }, + { + "name": "SPAN 4123", + "title": "16th & 17th Century Spanish Literature" + }, + { + "name": "SPAN 4126", + "title": "Cervantes" + }, + { + "name": "SPAN 4127", + "title": "18th and/or 19th Century Spanish Literature" + }, + { + "name": "SPAN 4128", + "title": "Hispanic Modernism" + }, + { + "name": "SPAN 4132", + "title": "20th &/or 21st Century Spanish Literature" + }, + { + "name": "SPAN 4133", + "title": "Hispanic Women in Literature" + }, + { + "name": "SPAN 4141", + "title": "Survey of Spanish American Literature" + }, + { + "name": "SPAN 4142", + "title": "Spanish American Short Story" + }, + { + "name": "SPAN 4143", + "title": "Spanish American Novel" + }, + { + "name": "SPAN 4144", + "title": "Spanish American Poetry" + }, + { + "name": "SPAN 4146", + "title": "National Literatures of Spanish America" + }, + { + "name": "SPAN 4147", + "title": "20th and/or 21st Century Puerto Rican Authors" + }, + { + "name": "SPAN 4148", + "title": "Latin American Literature of Social Conflict" + }, + { + "name": "SPAN 4149", + "title": "Literature of Colonial Spanish America" + }, + { + "name": "SPAN 4151", + "title": "Literature of the Caribbean" + }, + { + "name": "SPAN 4152", + "title": "U.S. Latino/a Studies" + }, + { + "name": "SPAN 4161", + "title": "Hispanic Literature through Art" + }, + { + "name": "SPAN 4162", + "title": "Hispanic Nobel Laureates" + }, + { + "name": "SPAN 4182", + "title": "Independent Study" + }, + { + "name": "SPAN 4183", + "title": "Directed Readings" + }, + { + "name": "SPAN 4221", + "title": "The Art of Spain" + }, + { + "name": "SPAN 4240", + "title": "Topics in Hispanic Popular Cultures" + }, + { + "name": "SPAN 4242", + "title": "Hispanic Influences in the U.S." + }, + { + "name": "SPAN 4301", + "title": "The Sounds of Spanish" + }, + { + "name": "SPAN 4302", + "title": "Introduction to Spanish Linguistics" + }, + { + "name": "SPAN 4303", + "title": "Spanish/English Bilingualism" + }, + { + "name": "SPAN 4304", + "title": "Spanish Applied Linguistics" + }, + { + "name": "SPAN 4305", + "title": "Evolution of the Spanish Language" + }, + { + "name": "SPAN 4306", + "title": "Spanish Sociolinguistics" + }, + { + "name": "SPAN 4307", + "title": "Language and Gender" + }, + { + "name": "SPAN 4401", + "title": "Advanced Translation and Interpretation" + }, + { + "name": "SPAN 4449", + "title": "Medieval Spanish Literature" + }, + { + "name": "SPAN 4885", + "title": "Internship" + }, + { + "name": "SPAN 5060", + "title": "Special Topics" + }, + { + "name": "SPAN 5083", + "title": "Directed Readings" + }, + { + "name": "SPAN 5121", + "title": "Survey in Spanish Literature" + }, + { + "name": "SPAN 5122", + "title": "Medieval Spanish Literature" + }, + { + "name": "SPAN 5124", + "title": "16th and 17th Century Spanish Literature" + }, + { + "name": "SPAN 5126", + "title": "Cervantes" + }, + { + "name": "SPAN 5136", + "title": "18th and 19th Century Spanish Literature" + }, + { + "name": "SPAN 5137", + "title": "Hispanic Modernism" + }, + { + "name": "SPAN 5138", + "title": "20th and 21st Century Spanish Literature" + }, + { + "name": "SPAN 5141", + "title": "Survey in Spanish-American Literature" + }, + { + "name": "SPAN 5142", + "title": "Spanish-American Short Story" + }, + { + "name": "SPAN 5143", + "title": "Spanish American Novel" + }, + { + "name": "SPAN 5144", + "title": "Spanish American Poetry" + }, + { + "name": "SPAN 5146", + "title": "National Literatures of Spanish America" + }, + { + "name": "SPAN 5147", + "title": "20thand 21st Century Puerto Rican Authors" + }, + { + "name": "SPAN 5148", + "title": "Latin American Literature of Social Conflict" + }, + { + "name": "SPAN 5151", + "title": "Literature of the Caribbean" + }, + { + "name": "SPAN 5152", + "title": "U.S. Latino Literature" + }, + { + "name": "SPAN 5161", + "title": "Hispanic Literature through Art" + }, + { + "name": "SPAN 5301", + "title": "Spanish Phonetics" + }, + { + "name": "SPAN 5302", + "title": "Introduction to Spanish Linguistics" + }, + { + "name": "SPAN 5303", + "title": "Spanish/English Contrasts" + }, + { + "name": "SPAN 5304", + "title": "Spanish Applied Linguistics" + }, + { + "name": "SPAN 5305", + "title": "History of the Spanish Language" + }, + { + "name": "SPAN 5306", + "title": "Spanish Sociolinguistics" + }, + { + "name": "SPAN 5401", + "title": "The Art of Translation" + }, + { + "name": "SPAN 5601", + "title": "Spanish for Health Professions" + }, + { + "name": "SPAN 5602", + "title": "Advanced Medical Spanish" + }, + { + "name": "SPAN 5603", + "title": "Latino Health Issues in the US" + }, + { + "name": "SPAN 5604", + "title": "Spanish/English Interpretation Techniques for Healthcare" + }, + { + "name": "SPAN 8000", + "title": "Special Topic Seminar" + }, + { + "name": "SPAN 8001", + "title": "Hispanic Bibliography and Research" + }, + { + "name": "SPAN 8110", + "title": "Seminar in Spanish and Spanish-American Literature" + }, + { + "name": "SPAN 8122", + "title": "Seminar in Medieval Spanish Literature" + }, + { + "name": "SPAN 8130", + "title": "Seminar in Golden Age Literature" + }, + { + "name": "SPAN 8140", + "title": "Seminar in 18th and 19th Century Spanish-American Literature" + }, + { + "name": "SPAN 8141", + "title": "Seminar in 20th and 21st Century Spanish Literature" + }, + { + "name": "SPAN 8146", + "title": "Colonial and 19th Century Spanish-American Literature" + }, + { + "name": "SPAN 8147", + "title": "20th and 21st Century Spanish-American Literature" + }, + { + "name": "SPAN 8149", + "title": "Spanish-American Theater" + }, + { + "name": "SPAN 8161", + "title": "Critical Approaches to Hispanic Literature" + }, + { + "name": "SPAN 8300", + "title": "Seminar in Spanish Linguistics" + }, + { + "name": "SPAN 8301", + "title": "Spanish Phonology and Morphology" + }, + { + "name": "SPAN 8302", + "title": "Syntax" + }, + { + "name": "SPAN 8303", + "title": "Hispanic Dialectology" + }, + { + "name": "SPAN 8304", + "title": "Spanish Language of Puerto Rico" + }, + { + "name": "SPAN 8305", + "title": "Comparative Romance Linguistics" + }, + { + "name": "SPAN 8385", + "title": "Internship in the Teaching of Spanish" + }, + { + "name": "SPAN 8985", + "title": "Teaching Higher Education: Language" + }, + { + "name": "SPAN 9001", + "title": "Spanish for Graduate Reading Knowledge" + }, + { + "name": "SPAN 9083", + "title": "Directed Readings" + }, + { + "name": "SPAN 9991", + "title": "Directed Research" + }, + { + "name": "SPAN 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "SPAN 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "SPAN 9999", + "title": "Dissertation Research" + }, + { + "name": "SPAN E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SPAN F000", + "title": "* See Statement Below" + }, + { + "name": "SPAN L000", + "title": "Elective LL" + }, + { + "name": "SPAN P000", + "title": "Elective P" + }, + { + "name": "SPAN U000", + "title": "Elective UL" + }, + { + "name": "SPED 2128", + "title": "Assistive Technology and Universal Design for Learning" + }, + { + "name": "SPED 2231", + "title": "Introduction to Inclusive Education" + }, + { + "name": "SPED 3187", + "title": "Integrated Literacy and Special Education Practicum" + }, + { + "name": "SPED 3201", + "title": "Effective Instructional Strategies for Young Students with Mild to Significant Disabilities" + }, + { + "name": "SPED 3211", + "title": "Effective Instructional Strategies for Young Children with Disabilities" + }, + { + "name": "SPED 3287", + "title": "Practicum for Diverse Learners" + }, + { + "name": "SPED 3312", + "title": "Methods and Curriculum for Students with Moderate to Severe Disabilities" + }, + { + "name": "SPED 3332", + "title": "Assessing and Teaching Students with Mild Disabilities" + }, + { + "name": "SPED 3487", + "title": "Practicum in Special Education" + }, + { + "name": "SPED 4103", + "title": "Classroom Management and Positive Behavior Support" + }, + { + "name": "SPED 4105", + "title": "Assessment in Early Childhood Special Education" + }, + { + "name": "SPED 4106", + "title": "Literacy Instruction for Young Children with Disabilities" + }, + { + "name": "SPED 4109", + "title": "Educating Students with Disabilities in Inclusive Settings" + }, + { + "name": "SPED 4196", + "title": "Literacy Instruction for Young Children with Disabilities" + }, + { + "name": "SPED 4331", + "title": "Community Resources and Collaboration in Special Education" + }, + { + "name": "SPED 5106", + "title": "Literacy Instruction for Young Children with Disabilities" + }, + { + "name": "SPED 5107", + "title": "Understanding and Using Special Education Research" + }, + { + "name": "SPED 5108", + "title": "Assistive Technology and Universal Design" + }, + { + "name": "SPED 5109", + "title": "Classroom Management and Positive Behavior Support" + }, + { + "name": "SPED 5111", + "title": "Educating Students with Disabilities in Inclusive Settings" + }, + { + "name": "SPED 5187", + "title": "Graduate Assessment Practicum in Early Childhood Special Education" + }, + { + "name": "SPED 5201", + "title": "Students with Mild to Severe Disabilities: Effective Teaching Strategies" + }, + { + "name": "SPED 5211", + "title": "Effective Instructional Strategies for Young Children with Disabilities" + }, + { + "name": "SPED 5287", + "title": "Integrated Literacy and Special Education Practicum" + }, + { + "name": "SPED 5301", + "title": "Building Communication in Students with Autism Spectrum Disorder and Severe Disabilities" + }, + { + "name": "SPED 5302", + "title": "Students with Autism Spectrum Disorders: Effective Teaching Strategies" + }, + { + "name": "SPED 5303", + "title": "Ethics and Applied Behavior Analysis" + }, + { + "name": "SPED 5304", + "title": "Concepts and Principles of Behavior Analysis" + }, + { + "name": "SPED 5305", + "title": "Single Subject Research Design" + }, + { + "name": "SPED 5401", + "title": "Students with Mild Disabilities: Effective Teaching Strategies" + }, + { + "name": "SPED 5402", + "title": "Effective Transition Practices for Students with Mild Disabilities" + }, + { + "name": "SPED 5501", + "title": "Learning Environments" + }, + { + "name": "SPED 5511", + "title": "Managing Learning Environments" + }, + { + "name": "SPED 5512", + "title": "Methods and Curriculum" + }, + { + "name": "SPED 5521", + "title": "Issues in Social, Emotional, and Physical Development" + }, + { + "name": "SPED 5522", + "title": "Cognition, Language, and Literacy" + }, + { + "name": "SPED 5587", + "title": "Special Education Practicum" + }, + { + "name": "SPED 5611", + "title": "Total Inclusion Seminar" + }, + { + "name": "SPED 5666", + "title": "Inclusive School Practices" + }, + { + "name": "SPED 8101", + "title": "Trends and Issues in Special Education" + }, + { + "name": "SPED 8701", + "title": "Proseminar in Individual Differences" + }, + { + "name": "SPED 8711", + "title": "Seminar in Special Education Research" + }, + { + "name": "SPED 8741", + "title": "Seminar in Exceptionalities" + }, + { + "name": "SPED 8742", + "title": "Seminar in Exceptionalities" + }, + { + "name": "SPED 9187", + "title": "Practicum in Special Education" + }, + { + "name": "SPED 9287", + "title": "Practicum in Special Education" + }, + { + "name": "SPED 9387", + "title": "Practicum in Special Education" + }, + { + "name": "SPED 9485", + "title": "Augmen Comm Empow Intern" + }, + { + "name": "SPED 9489", + "title": "Fld Exp Spec Ed Supervis" + }, + { + "name": "SPED E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SRM 1211", + "title": "Sport and Society" + }, + { + "name": "SRM 2212", + "title": "Law and Ethics in Sport and Recreation" + }, + { + "name": "SRM 2213", + "title": "Budget and Finance Systems in Sport and Recreation" + }, + { + "name": "SRM 2217", + "title": "Research in Sport and Recreation" + }, + { + "name": "SRM 3211", + "title": "Management in Sport and Recreation" + }, + { + "name": "SRM 3214", + "title": "Marketing Management in Sport and Recreation" + }, + { + "name": "SRM 3215", + "title": "Stadium/Arena Design and Management" + }, + { + "name": "SRM 3216", + "title": "Economics of Sport and Recreation" + }, + { + "name": "SRM 3218", + "title": "Organizational Strategy in Sport and Recreation" + }, + { + "name": "SRM 3220", + "title": "Special Topics in Sport and Recreation Management" + }, + { + "name": "SRM 3221", + "title": "Athletics Administration" + }, + { + "name": "SRM 3222", + "title": "Professional and International Sport" + }, + { + "name": "SRM 3224", + "title": "Media and Communications in Sport and Recreation" + }, + { + "name": "SRM 3225", + "title": "Recreation and Leisure Service Management" + }, + { + "name": "SRM 3226", + "title": "Consumer Behavior in Sport and Recreation" + }, + { + "name": "SRM 3227", + "title": "Advanced Marketing for Sport and Recreation" + }, + { + "name": "SRM 3228", + "title": "Sales Management in Sport and Recreation" + }, + { + "name": "SRM 3296", + "title": "Marketing Management in Sport and Recreation" + }, + { + "name": "SRM 4222", + "title": "Current and Ethical Issues in Sport Management" + }, + { + "name": "SRM 4296", + "title": "Current and Ethical Issues in Sport and Recreation Management" + }, + { + "name": "SRM 5211", + "title": "Sport Finance and Economics" + }, + { + "name": "SRM 5212", + "title": "Legal Issues in Sport and Recreation" + }, + { + "name": "SRM 5214", + "title": "Philosophy and Ethics" + }, + { + "name": "SRM 5215", + "title": "Sport Marketing" + }, + { + "name": "SRM 5216", + "title": "Strategic Management in Sport and Recreation" + }, + { + "name": "SRM 5217", + "title": "Sport Facility Management" + }, + { + "name": "SRM 5220", + "title": "Special Topics in Sport and Recreation" + }, + { + "name": "SRM 5221", + "title": "Sport Governance and Policy" + }, + { + "name": "SRM 5224", + "title": "Grad Seminar: Sport/Rec" + }, + { + "name": "SRM 5225", + "title": "Sport Sponsorship and Sales" + }, + { + "name": "SRM 5226", + "title": "Consumer Behavior in Sport and Recreation" + }, + { + "name": "SRM 5227", + "title": "Sport Media and Communication" + }, + { + "name": "SRM 5231", + "title": "Compliance in Intercollegiate Athletics" + }, + { + "name": "SRM 5232", + "title": "Fundraising and Development" + }, + { + "name": "SRM 5233", + "title": "Governance and Policy in Intercollegiate Athletics" + }, + { + "name": "SRM 5234", + "title": "Student-Athlete Affairs in Intercollegiate Athletics" + }, + { + "name": "SRM 5241", + "title": "Evaluation of Programs and Events" + }, + { + "name": "SRM 5242", + "title": "Business of Non-Profit Organizations" + }, + { + "name": "SRM 5243", + "title": "Event Management" + }, + { + "name": "SRM 5251", + "title": "Introduction to Sport Analytics" + }, + { + "name": "SRM 5252", + "title": "Sport for Development" + }, + { + "name": "SRM 5253", + "title": "Applied Sport Analytics" + }, + { + "name": "SRM 5254", + "title": "Advanced Sport Data Analysis and Visualization" + }, + { + "name": "SRM 5255", + "title": "The Sport Workplace" + }, + { + "name": "SRM 5256", + "title": "Professional Portfolio in Sport Analytics" + }, + { + "name": "SRM 5285", + "title": "Graduate Internship in Sport and Recreation" + }, + { + "name": "SRM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SRM L000", + "title": "Elective LL" + }, + { + "name": "SRM T000", + "title": "Elective" + }, + { + "name": "SRM T007", + "title": "Elective" + }, + { + "name": "SRM U000", + "title": "Elective UL" + }, + { + "name": "STHM 0827", + "title": "Dimensions of Diversity: What's Brewing in the Melting Pot?" + }, + { + "name": "STHM 0857", + "title": "Sport & Leisure in American Society" + }, + { + "name": "STHM 1113", + "title": "The Business of Leisure" + }, + { + "name": "STHM 2001", + "title": "Career Exploration and Development Seminar" + }, + { + "name": "STHM 2114", + "title": "Leisure and Tourism for a Diverse Society" + }, + { + "name": "STHM 2401", + "title": "Foundations of Event Leadership" + }, + { + "name": "STHM 3185", + "title": "Internship I" + }, + { + "name": "STHM 3411", + "title": "Program and Special Event Planning" + }, + { + "name": "STHM 3415", + "title": "Meetings, Conference, and Convention Management" + }, + { + "name": "STHM 3420", + "title": "International/Domestic Travel Immersion Experience" + }, + { + "name": "STHM 3425", + "title": "Event Operations" + }, + { + "name": "STHM 3426", + "title": "Entrepreneurship in Sport, Recreation, Tourism, and Hospitality" + }, + { + "name": "STHM 3428", + "title": "Sponsorship, Fundraising and Ancillary Revenue Sources in Event Management" + }, + { + "name": "STHM 3482", + "title": "Independent Study" + }, + { + "name": "STHM 4112", + "title": "Senior Professional Development Seminar" + }, + { + "name": "STHM 4185", + "title": "Internship II" + }, + { + "name": "STHM 4191", + "title": "Senior Project" + }, + { + "name": "STHM 5111", + "title": "Applied Research" + }, + { + "name": "STHM 5411", + "title": "Management of Organizations" + }, + { + "name": "STHM 5413", + "title": "Financial Management" + }, + { + "name": "STHM 5415", + "title": "Service Marketing" + }, + { + "name": "STHM 5483", + "title": "Readings and Conferences" + }, + { + "name": "STHM 9001", + "title": "Research Seminar" + }, + { + "name": "STHM 9002", + "title": "Seminar in Theory Development: Tourism and Sport Concepts" + }, + { + "name": "STHM 9003", + "title": "Sem:Tour/Hosp Mgt/Ebus" + }, + { + "name": "STHM 9004", + "title": "Seminar in Culture and Communication" + }, + { + "name": "STHM 9090", + "title": "Special Topics in Tourism and Sport" + }, + { + "name": "STHM 9482", + "title": "Independent Study" + }, + { + "name": "STHM 9795", + "title": "Master's Continuation" + }, + { + "name": "STHM 9982", + "title": "Independent Research" + }, + { + "name": "STHM 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "STHM 9995", + "title": "Master's Project" + }, + { + "name": "STHM 9996", + "title": "Master's Thesis" + }, + { + "name": "STHM 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "STHM 9999", + "title": "Doctoral Dissertation" + }, + { + "name": "STHM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "STHM L000", + "title": "Elective LL" + }, + { + "name": "STHM T000", + "title": "Elective" + }, + { + "name": "STHM T007", + "title": "Elective" + }, + { + "name": "STHM U000", + "title": "Elective UL" + }, + { + "name": "STAT 0826", + "title": "Statistics in the News" + }, + { + "name": "STAT 0827", + "title": "Statistical Reasoning & Games of Chance" + }, + { + "name": "STAT 1001", + "title": "Quantitative Methods for Business I" + }, + { + "name": "STAT 1102", + "title": "Quantitative Methods for Business II" + }, + { + "name": "STAT 1902", + "title": "Honors Quantitative Methods for Business II" + }, + { + "name": "STAT 2103", + "title": "Statistical Business Analytics" + }, + { + "name": "STAT 2104", + "title": "Selected Topics in Statistical Business Analytics" + }, + { + "name": "STAT 2501", + "title": "Quantitative Foundations for Data Science" + }, + { + "name": "STAT 2512", + "title": "Intermediate Statistics" + }, + { + "name": "STAT 2521", + "title": "Data Analysis and Statistical Computing" + }, + { + "name": "STAT 2522", + "title": "Survey Design and Sampling" + }, + { + "name": "STAT 2523", + "title": "Design of Experiments and Quality Control" + }, + { + "name": "STAT 2903", + "title": "Honors Statistical Business Analytics" + }, + { + "name": "STAT 3501", + "title": "Statistics for Engineers" + }, + { + "name": "STAT 3502", + "title": "Regression and Predictive Analytics" + }, + { + "name": "STAT 3503", + "title": "Applied Statistics and Data Science" + }, + { + "name": "STAT 3504", + "title": "Time Series and Forecasting Models" + }, + { + "name": "STAT 3505", + "title": "Introduction to SAS for Data Analytics" + }, + { + "name": "STAT 3506", + "title": "Nonparametric and Categorical Data Analysis" + }, + { + "name": "STAT 3580", + "title": "Special Topics - Statistics" + }, + { + "name": "STAT 3582", + "title": "Independent Study" + }, + { + "name": "STAT 4596", + "title": "Capstone: Statistical Science and Data Analytics" + }, + { + "name": "STAT 5001", + "title": "Quantitative Methods for Business" + }, + { + "name": "STAT 5002", + "title": "Introduction to Biostatistics" + }, + { + "name": "STAT 5170", + "title": "Special Topics" + }, + { + "name": "STAT 5182", + "title": "Independent Study" + }, + { + "name": "STAT 5190", + "title": "Special Topics - Stat" + }, + { + "name": "STAT 5282", + "title": "Independent Study" + }, + { + "name": "STAT 5602", + "title": "Visualization: The Art of Numbers and the Psychology of Persuasion" + }, + { + "name": "STAT 5603", + "title": "Statistical Learning and Data Mining" + }, + { + "name": "STAT 5604", + "title": "Experiments: Knowledge by Design" + }, + { + "name": "STAT 5605", + "title": "Decision Models: From Data to Decisions" + }, + { + "name": "STAT 5606", + "title": "Data: Care, Feeding, and Cleaning" + }, + { + "name": "STAT 5607", + "title": "Advanced Business Analytics" + }, + { + "name": "STAT 5611", + "title": "Business Analytics II" + }, + { + "name": "STAT 5651", + "title": "Capstone in Analytics" + }, + { + "name": "STAT 5801", + "title": "Statistical Analysis for Management" + }, + { + "name": "STAT 5802", + "title": "Quantitative Techniques for Management" + }, + { + "name": "STAT 5890", + "title": "Special Topics" + }, + { + "name": "STAT 8001", + "title": "Probability and Statistics Theory I" + }, + { + "name": "STAT 8002", + "title": "Probability and Statistics Theory II" + }, + { + "name": "STAT 8003", + "title": "Statistical Methods I" + }, + { + "name": "STAT 8004", + "title": "Statistical Methods II" + }, + { + "name": "STAT 8031", + "title": "Probability and Large Sample Theory" + }, + { + "name": "STAT 8101", + "title": "Stochastic Processes" + }, + { + "name": "STAT 8102", + "title": "Statistical Methods III" + }, + { + "name": "STAT 8103", + "title": "Sampling Theory" + }, + { + "name": "STAT 8104", + "title": "Mathematics for Stat" + }, + { + "name": "STAT 8105", + "title": "Univariate Time Series Analysis" + }, + { + "name": "STAT 8106", + "title": "Linear Models I" + }, + { + "name": "STAT 8107", + "title": "Design of Experiments I" + }, + { + "name": "STAT 8108", + "title": "Applied Multivariate Analysis I" + }, + { + "name": "STAT 8109", + "title": "Applied Statistics and Data Science" + }, + { + "name": "STAT 8111", + "title": "Survey Techniques for Business Applications" + }, + { + "name": "STAT 8112", + "title": "Statistical Methods for Business Research I" + }, + { + "name": "STAT 8113", + "title": "Statistical Methods for Business Research II" + }, + { + "name": "STAT 8114", + "title": "Survival Analysis I" + }, + { + "name": "STAT 8115", + "title": "Nonparametric Methods" + }, + { + "name": "STAT 8116", + "title": "Categorical Data Analysis" + }, + { + "name": "STAT 8117", + "title": "Clinical Trials" + }, + { + "name": "STAT 8121", + "title": "Statistical Computing" + }, + { + "name": "STAT 8122", + "title": "Advanced SAS Programming" + }, + { + "name": "STAT 8123", + "title": "Time Series Analysis and Forecasting" + }, + { + "name": "STAT 8207", + "title": "Design and Analysis of Complex Experiments" + }, + { + "name": "STAT 8515", + "title": "Data Wrangling and Curation" + }, + { + "name": "STAT 8982", + "title": "Independent Study" + }, + { + "name": "STAT 9001", + "title": "Advanced Statistical Inference I" + }, + { + "name": "STAT 9002", + "title": "Advanced Statistical Inference II" + }, + { + "name": "STAT 9090", + "title": "Special Topics" + }, + { + "name": "STAT 9101", + "title": "Multivariate Time Series Analysis" + }, + { + "name": "STAT 9103", + "title": "Stat Lrng & Data Mining" + }, + { + "name": "STAT 9106", + "title": "Linear Models II" + }, + { + "name": "STAT 9107", + "title": "Design of Experiments II" + }, + { + "name": "STAT 9108", + "title": "Multivariate Analysis II" + }, + { + "name": "STAT 9114", + "title": "Survival Analysis II" + }, + { + "name": "STAT 9116", + "title": "Statistical Genetics: An Advanced Graduate Course" + }, + { + "name": "STAT 9180", + "title": "Seminar in New Topics in Statistics" + }, + { + "name": "STAT 9183", + "title": "Directed Study in Statistics" + }, + { + "name": "STAT 9190", + "title": "Seminar in New Topics in Statistics" + }, + { + "name": "STAT 9994", + "title": "Preliminary Examination Preparation" + }, + { + "name": "STAT 9998", + "title": "Pre-Dissertation Research" + }, + { + "name": "STAT 9999", + "title": "Dissertation Research" + }, + { + "name": "STAT E000", + "title": "Elective - needs evaluation" + }, + { + "name": "SGM 0827", + "title": "Creativity and Organizational Innovation" + }, + { + "name": "SGM 2525", + "title": "Management Consulting: Principles and Practices" + }, + { + "name": "SGM 3001", + "title": "Becoming a Manager: Building, Leading, and Managing New and Small Businesses" + }, + { + "name": "SGM 3002", + "title": "Be Your Own Boss: Planning to Start Your Own Business" + }, + { + "name": "SGM 3501", + "title": "Entrepreneurial and Innovative Thinking" + }, + { + "name": "SGM 3503", + "title": "Lean Startup: Fast and Inexpensive Ways to Test and Launch Your Ideas" + }, + { + "name": "SGM 3504", + "title": "Ready, Fire, Aim: Launching a Profitable Micro-venture in 100 Days" + }, + { + "name": "SGM 3511", + "title": "Doing Well by Doing Good: Where Innovation and Entrepreneurship Meet Social Impact" + }, + { + "name": "SGM 3521", + "title": "Finance Your Ideas: Crowdfunding, Grants, Banks, Venture Funds, Corporate and Private Investment" + }, + { + "name": "SGM 3525", + "title": "Engagement Management" + }, + { + "name": "SGM 3580", + "title": "Special Topics - Strategic Management" + }, + { + "name": "SGM 3582", + "title": "Independent Study" + }, + { + "name": "SGM 3585", + "title": "Incubator Internship: Contribute, Connect and Learn as a Part of the Entrepreneurial Ecosystem" + }, + { + "name": "SGM 3682", + "title": "Independent Study" + }, + { + "name": "SGM 3685", + "title": "New Venture Internship: Learning to be a High-Value Employee, Manager, or Founder" + }, + { + "name": "SGM 4596", + "title": "Strategic Planning: The Business Plan as a Strategic Tool for Existing Businesses and Entrepreneurs" + }, + { + "name": "SGM 5001", + "title": "Mng New & Small Enterprs" + }, + { + "name": "SGM 5002", + "title": "Business Plan Developmnt" + }, + { + "name": "SGM 5051", + "title": "Business Strategy in a Global Environment" + }, + { + "name": "SGM 5052", + "title": "Analytical Foundations of Strategy" + }, + { + "name": "SGM 5101", + "title": "Foundations of Strategic Management" + }, + { + "name": "SGM 5102", + "title": "Strategic Decision Support Systems" + }, + { + "name": "SGM 5103", + "title": "Management of Technology and Innovation" + }, + { + "name": "SGM 5104", + "title": "Management of Growth, Decline and Turnaround" + }, + { + "name": "SGM 5105", + "title": "Industry Competitive Analysis" + }, + { + "name": "SGM 5106", + "title": "E-Commerce Strategy" + }, + { + "name": "SGM 5107", + "title": "Management of Mergers and Acquisitions" + }, + { + "name": "SGM 5108", + "title": "New Venture Creation" + }, + { + "name": "SGM 5111", + "title": "Growing Through Mergers & Acquisitions" + }, + { + "name": "SGM 5112", + "title": "Competing on Value: Analyzing and Shaping Your Industry" + }, + { + "name": "SGM 5113", + "title": "Strategy Implementation: Designing Organizations for Success" + }, + { + "name": "SGM 5114", + "title": "Managing Strategic Alliances: Competing through Collaborations" + }, + { + "name": "SGM 5115", + "title": "Firms in Crisis: Managing Turnaround" + }, + { + "name": "SGM 5116", + "title": "Non-Profit Governance: Preparing to Sit on a Board of Directors" + }, + { + "name": "SGM 5117", + "title": "New Venture Creation: Entrepreneurial Opportunities, Resources, and Teams" + }, + { + "name": "SGM 5118", + "title": "Innovation-Based Strategy: Managing Disruptive Change" + }, + { + "name": "SGM 5119", + "title": "Social Entrepreneurship: Change the World, Profitably" + }, + { + "name": "SGM 5121", + "title": "Emerging Market Innovation: Reinventing the Multinational Firm" + }, + { + "name": "SGM 5122", + "title": "Business Model Innovation: Profitable and High-Impact by Design" + }, + { + "name": "SGM 5123", + "title": "Corporate Strategy: Managing Diversified Firms" + }, + { + "name": "SGM 5124", + "title": "Creative Problem Solving: Perspectives & Techniques that Improve Creativity in Organizations & Life" + }, + { + "name": "SGM 5125", + "title": "Financing Entrepreneurial and Corporate Ventures" + }, + { + "name": "SGM 5126", + "title": "Innovation Adoption and Diffusion: Finding First Customers and Driving Widespread Implementation" + }, + { + "name": "SGM 5127", + "title": "Managing Knowledge Networks: Understanding & Analyzing Social Networks in Organizations & Beyond" + }, + { + "name": "SGM 5128", + "title": "The Crowd, The Cloud, and Open Innovation Strategy" + }, + { + "name": "SGM 5131", + "title": "Social Entrepreneurship - Innovative Approaches to Achieving Positive Social Impact" + }, + { + "name": "SGM 5132", + "title": "Sustainable Business Practices" + }, + { + "name": "SGM 5133", + "title": "Management Consulting: Principles and Practices" + }, + { + "name": "SGM 5134", + "title": "Engagement Management" + }, + { + "name": "SGM 5135", + "title": "Innovation Intelligence: Plan, Build, Protect, and Monetize a Technology / Innovation Portfolio" + }, + { + "name": "SGM 5136", + "title": "Principles of Strategy and Management" + }, + { + "name": "SGM 5137", + "title": "Entrepreneurial Thinking and New Venture Creation" + }, + { + "name": "SGM 5138", + "title": "Global Innovation Strategy: Creating Agile, Innovative, Globally-Competitive Organizations" + }, + { + "name": "SGM 5139", + "title": "Lean Entrepreneurship / Innovation: Fast & Frugal Methods to Launch Startups & Test Innovative Ideas" + }, + { + "name": "SGM 5142", + "title": "Business Model Innovation" + }, + { + "name": "SGM 5144", + "title": "Creativity Unleashed: Harnessing Creativity to Solve Real-World Innovation Challenges" + }, + { + "name": "SGM 5145", + "title": "Plan, Pitch, and Fund an Entrepreneurial Start-Up" + }, + { + "name": "SGM 5147", + "title": "Managing Social Networks Using Networks to Drive Productivity, Innovation, & Organizational Learning" + }, + { + "name": "SGM 5148", + "title": "Open Innovation and Managing Strategic Alliances" + }, + { + "name": "SGM 5170", + "title": "Special Topics" + }, + { + "name": "SGM 5180", + "title": "Special Topics in SGM" + }, + { + "name": "SGM 5182", + "title": "Independent Study" + }, + { + "name": "SGM 5187", + "title": "Future Franklins: Assessing the Feasibility of Innovative Business Ideas" + }, + { + "name": "SGM 5190", + "title": "Special Topics: General & Strategic Management" + }, + { + "name": "SGM 5282", + "title": "Independent Study" + }, + { + "name": "SGM 5501", + "title": "International Management" + }, + { + "name": "SGM 5701", + "title": "Project in Consulting" + }, + { + "name": "SGM 5702", + "title": "Multinational Strategic Management" + }, + { + "name": "SGM 5801", + "title": "Contemporary Corporate Strategy" + }, + { + "name": "SGM 5882", + "title": "Independent Study" + }, + { + "name": "SGM 5890", + "title": "Special Topics" + }, + { + "name": "SGM 5901", + "title": "Mng New/Small Enterprise" + }, + { + "name": "SGM 5902", + "title": "Managing Bus Planning" + }, + { + "name": "SGM 9001", + "title": "Seminar: Strategic Form - Environmental Analysis" + }, + { + "name": "SGM 9002", + "title": "Seminar: Administrative Strategic Decisions" + }, + { + "name": "SGM 9003", + "title": "Seminar: Management Control" + }, + { + "name": "SGM 9090", + "title": "Spec Topic Strategy" + }, + { + "name": "SGM 9183", + "title": "Directed Study in Mgt" + }, + { + "name": "SGM 9211", + "title": "Theor Fndns in Entrepr" + }, + { + "name": "SGM 9212", + "title": "Strategic Management of Technology and Innovation" + }, + { + "name": "SGM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "STAW 3011", + "title": "Non-TU Domestic Program" + }, + { + "name": "STAW 3021", + "title": "Non-TU Study Abroad" + }, + { + "name": "STAW 3031", + "title": "TU Exchange Program" + }, + { + "name": "STAW 3041", + "title": "Study Abroad Insurance" + }, + { + "name": "SCM 3505", + "title": "Lean Six Sigma in Supply Chain Management" + }, + { + "name": "SCM 3515", + "title": "Principles of Supply Chain Management" + }, + { + "name": "SCM 3516", + "title": "Transportation and Logistics Management" + }, + { + "name": "SCM 3517", + "title": "Inventory and Warehouse Management" + }, + { + "name": "SCM 3518", + "title": "Sourcing and Procurement" + }, + { + "name": "SCM 5602", + "title": "Global Supply Chain Management" + }, + { + "name": "SCM 5603", + "title": "Supply Chain Management Analytics" + }, + { + "name": "SCM 5604", + "title": "Practical Applications in Supply Chain Management" + }, + { + "name": "SCM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "JIBS 3101", + "title": "Introduction to Global Finance" + }, + { + "name": "JIBS 3102", + "title": "Global Operations and Supply Chain Management" + }, + { + "name": "JIBS 3501", + "title": "Marketing in a Global Environment" + }, + { + "name": "JIBS 4197", + "title": "Global Business Overview" + }, + { + "name": "JIBS 4596", + "title": "International Business Capstone" + }, + { + "name": "JIBS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "TESL 4442", + "title": "Strategies for Teaching English as an Additional Language" + }, + { + "name": "TESL 4443", + "title": "Teaching English World-Wide" + }, + { + "name": "TESL 4444", + "title": "English Language Teaching: Curriculum and Assessment" + }, + { + "name": "TESL 5611", + "title": "Applied Language Study I: Phonology and the Lexicon" + }, + { + "name": "TESL 5612", + "title": "Applied Language Study II: Grammar, Morphology and Classroom Discourse" + }, + { + "name": "TESL 5613", + "title": "Multilingual Students' Literacy Development" + }, + { + "name": "TESL 5614", + "title": "Current Approaches to Teaching English Language Learners" + }, + { + "name": "TESL 5615", + "title": "Teaching English in a Global Context" + }, + { + "name": "TESL 5616", + "title": "Designing Assessment and Curriculum for Multilingual Students" + }, + { + "name": "TESL 5618", + "title": "Second Language Development" + }, + { + "name": "TESL 5621", + "title": "Contexts for Teaching and Learning Language" + }, + { + "name": "TESL 5631", + "title": "Foundations of Language Teaching: Meeting the Needs of English Language Learners" + }, + { + "name": "TESL 5687", + "title": "Practicum for Teaching English Language Learners" + }, + { + "name": "TESL 8625", + "title": "Applied Linguistics" + }, + { + "name": "TESL 8626", + "title": "Second Language Writing" + }, + { + "name": "TESL 8634", + "title": "Bilingualism and Bilingual Education" + }, + { + "name": "TESL 8635", + "title": "Educating English Language Learners: State of Knowledge" + }, + { + "name": "TESL 8636", + "title": "Assessment of English Language Learners" + }, + { + "name": "TESL 8643", + "title": "Research Methods in Applied Linguistics" + }, + { + "name": "TESL 8644", + "title": "Current Issues in Applied Linguistics" + }, + { + "name": "TUJ 1001", + "title": "TUJ Bridge Seminar 1" + }, + { + "name": "TUJ 1002", + "title": "Bridge Seminar 2: Academic Research for International Students" + }, + { + "name": "THTR 0805", + "title": "Dramatic Imagination: The Performing Arts in Society" + }, + { + "name": "THTR 0807", + "title": "The Creative Spirit: A Multidisciplinary View" + }, + { + "name": "THTR 0825", + "title": "The Art of Acting" + }, + { + "name": "THTR 0841", + "title": "Classics of African American Theater" + }, + { + "name": "THTR 0842", + "title": "Race on the Stage" + }, + { + "name": "THTR 0852", + "title": "World Performances" + }, + { + "name": "THTR 0907", + "title": "Honors The Creative Spirit: A Multidisciplinary View" + }, + { + "name": "THTR 0925", + "title": "Honors Art of Acting" + }, + { + "name": "THTR 0952", + "title": "Honors World Performances" + }, + { + "name": "THTR 1002", + "title": "Theater: The Collaborative Art" + }, + { + "name": "THTR 1003", + "title": "Creativity: Basic" + }, + { + "name": "THTR 1008", + "title": "Poetry as Performance" + }, + { + "name": "THTR 1087", + "title": "Production Practicum" + }, + { + "name": "THTR 1096", + "title": "Introduction to Theater Process" + }, + { + "name": "THTR 1141", + "title": "Voice I for Musical Theater" + }, + { + "name": "THTR 1142", + "title": "Voice II for Musical Theater" + }, + { + "name": "THTR 1187", + "title": "Production Practicum" + }, + { + "name": "THTR 1201", + "title": "Acting for Non-Majors" + }, + { + "name": "THTR 1202", + "title": "Fundamentals of Voice and Movement" + }, + { + "name": "THTR 1211", + "title": "Fundamentals of Acting" + }, + { + "name": "THTR 1231", + "title": "Acting I" + }, + { + "name": "THTR 1232", + "title": "Jacques Lecoq Technique Part 1" + }, + { + "name": "THTR 1411", + "title": "Welcome Backstage" + }, + { + "name": "THTR 1511", + "title": "Stagecraft" + }, + { + "name": "THTR 2001", + "title": "Introduction to Hip Hop Theater" + }, + { + "name": "THTR 2003", + "title": "Stage to Screen" + }, + { + "name": "THTR 2008", + "title": "Poetic Ethnography" + }, + { + "name": "THTR 2085", + "title": "Theater Internship" + }, + { + "name": "THTR 2101", + "title": "Ballet I for Musical Theater" + }, + { + "name": "THTR 2121", + "title": "Ballet II for Musical Theater" + }, + { + "name": "THTR 2131", + "title": "Music Theory/Sightsinging: Basic" + }, + { + "name": "THTR 2141", + "title": "Voice III for Musical Theater" + }, + { + "name": "THTR 2142", + "title": "Voice IV for Musical Theater" + }, + { + "name": "THTR 2201", + "title": "Acting Styles" + }, + { + "name": "THTR 2210", + "title": "Special Topics" + }, + { + "name": "THTR 2221", + "title": "Voice for the Actor" + }, + { + "name": "THTR 2231", + "title": "Speech for the Actor" + }, + { + "name": "THTR 2232", + "title": "Jacques Lecoq Technique Part 2" + }, + { + "name": "THTR 2233", + "title": "Advanced Speech for the Actor" + }, + { + "name": "THTR 2241", + "title": "Basic Movement" + }, + { + "name": "THTR 2251", + "title": "Dance for the Actor" + }, + { + "name": "THTR 2252", + "title": "Alexander Technique" + }, + { + "name": "THTR 2261", + "title": "Acting II" + }, + { + "name": "THTR 2262", + "title": "Improvisation" + }, + { + "name": "THTR 2271", + "title": "Dialects for the Actor" + }, + { + "name": "THTR 2411", + "title": "Introduction to Design" + }, + { + "name": "THTR 2421", + "title": "Creative Sound Technique" + }, + { + "name": "THTR 2431", + "title": "Lighting and Sound Technology" + }, + { + "name": "THTR 2441", + "title": "Stage Management I" + }, + { + "name": "THTR 2442", + "title": "Propcraft" + }, + { + "name": "THTR 2501", + "title": "Theater Safety and Management" + }, + { + "name": "THTR 2512", + "title": "Lighting Design I" + }, + { + "name": "THTR 2611", + "title": "Make-Up" + }, + { + "name": "THTR 2612", + "title": "Costume Design I" + }, + { + "name": "THTR 2711", + "title": "Drawing and Rendering for the Theater I" + }, + { + "name": "THTR 2712", + "title": "Drawing and Rendering for the Theater II" + }, + { + "name": "THTR 2713", + "title": "Design Drafting" + }, + { + "name": "THTR 2721", + "title": "Scene Design I" + }, + { + "name": "THTR 3001", + "title": "History of the Theater I" + }, + { + "name": "THTR 3002", + "title": "History of the Theater II" + }, + { + "name": "THTR 3011", + "title": "Methods of Teaching Artistry" + }, + { + "name": "THTR 3012", + "title": "American Musical Theater" + }, + { + "name": "THTR 3013", + "title": "Methods of Teaching Theater" + }, + { + "name": "THTR 3031", + "title": "Lighting, Sound and Video Technology" + }, + { + "name": "THTR 3051", + "title": "Modern Directions" + }, + { + "name": "THTR 3052", + "title": "Theater of Protest" + }, + { + "name": "THTR 3053", + "title": "Women in Theater" + }, + { + "name": "THTR 3054", + "title": "African-American Theater" + }, + { + "name": "THTR 3055", + "title": "Performance Art" + }, + { + "name": "THTR 3056", + "title": "Shakespeare on Film" + }, + { + "name": "THTR 3057", + "title": "Queer Theater" + }, + { + "name": "THTR 3058", + "title": "Community Engaged Theater" + }, + { + "name": "THTR 3070", + "title": "Seminar in Drama" + }, + { + "name": "THTR 3080", + "title": "Special Topics" + }, + { + "name": "THTR 3082", + "title": "General Study" + }, + { + "name": "THTR 3085", + "title": "Practice Teaching in Theater I" + }, + { + "name": "THTR 3086", + "title": "Practice Teaching in Theater II" + }, + { + "name": "THTR 3096", + "title": "Classical Tradition" + }, + { + "name": "THTR 3097", + "title": "Romantic Tradition" + }, + { + "name": "THTR 3101", + "title": "Jazz I for Musical Theater" + }, + { + "name": "THTR 3121", + "title": "Jazz II for Musical Theater" + }, + { + "name": "THTR 3131", + "title": "Advanced Jazz for Musical Theater" + }, + { + "name": "THTR 3132", + "title": "Musical Theater Voice & Acting" + }, + { + "name": "THTR 3141", + "title": "Voice V for Musical Theater" + }, + { + "name": "THTR 3142", + "title": "Voice VI for Musical Theater" + }, + { + "name": "THTR 3151", + "title": "Ballet III for Musical Theater" + }, + { + "name": "THTR 3191", + "title": "Research" + }, + { + "name": "THTR 3210", + "title": "Theater Workshop" + }, + { + "name": "THTR 3220", + "title": "Theater Workshop" + }, + { + "name": "THTR 3221", + "title": "Advanced Voice for the Actor" + }, + { + "name": "THTR 3230", + "title": "Theater Workshop" + }, + { + "name": "THTR 3231", + "title": "Acting for Commercials, Industrials and Voice-Overs" + }, + { + "name": "THTR 3241", + "title": "Combat & Stunts for the Actor" + }, + { + "name": "THTR 3261", + "title": "The Job Market" + }, + { + "name": "THTR 3262", + "title": "Improvisation 2" + }, + { + "name": "THTR 3278", + "title": "Acting for Film and TV" + }, + { + "name": "THTR 3279", + "title": "Acting III" + }, + { + "name": "THTR 3301", + "title": "Introduction to the Director's Art" + }, + { + "name": "THTR 3321", + "title": "Rehearsal & Performance" + }, + { + "name": "THTR 3385", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "THTR 3386", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "THTR 3421", + "title": "Technical Direction for the Theater" + }, + { + "name": "THTR 3422", + "title": "Structural Design for the Stage" + }, + { + "name": "THTR 3431", + "title": "Scene Painting I" + }, + { + "name": "THTR 3432", + "title": "Scene Painting II" + }, + { + "name": "THTR 3442", + "title": "Theater Management I" + }, + { + "name": "THTR 3613", + "title": "History of Decor" + }, + { + "name": "THTR 3621", + "title": "Costume Production" + }, + { + "name": "THTR 3622", + "title": "Draping and Flat Pattern Drafting" + }, + { + "name": "THTR 3623", + "title": "Costume Crafts" + }, + { + "name": "THTR 3624", + "title": "Draping and Flat Pattern Drafting 2" + }, + { + "name": "THTR 3625", + "title": "History of Fashion" + }, + { + "name": "THTR 3641", + "title": "Theatrical Model Making" + }, + { + "name": "THTR 3741", + "title": "Design for TV and Film" + }, + { + "name": "THTR 3801", + "title": "Playwriting" + }, + { + "name": "THTR 4003", + "title": "Production Dramaturgy" + }, + { + "name": "THTR 4097", + "title": "World of the Play" + }, + { + "name": "THTR 4101", + "title": "Tap for Musical Theater" + }, + { + "name": "THTR 4121", + "title": "Musical Theater Dance Techniques" + }, + { + "name": "THTR 4131", + "title": "Musical Theater Scene Study" + }, + { + "name": "THTR 4132", + "title": "Senior Cabaret Workshop" + }, + { + "name": "THTR 4133", + "title": "Musical Theater: Dress Rehearsal" + }, + { + "name": "THTR 4134", + "title": "Directing for the Musical Stage" + }, + { + "name": "THTR 4141", + "title": "Voice VII for Musical Theater" + }, + { + "name": "THTR 4173", + "title": "Writing Lyrics" + }, + { + "name": "THTR 4212", + "title": "Acting IV" + }, + { + "name": "THTR 4221", + "title": "Theater as a Profession" + }, + { + "name": "THTR 4222", + "title": "Acting V" + }, + { + "name": "THTR 4241", + "title": "Swordplay for the Actor" + }, + { + "name": "THTR 4282", + "title": "Acting" + }, + { + "name": "THTR 4299", + "title": "Thesis for Acting Emphasis" + }, + { + "name": "THTR 4301", + "title": "Advanced Directing" + }, + { + "name": "THTR 4401", + "title": "Theater Management Capstone" + }, + { + "name": "THTR 4482", + "title": "Technical Production" + }, + { + "name": "THTR 4511", + "title": "Lighting Design II" + }, + { + "name": "THTR 4582", + "title": "Lighting Design" + }, + { + "name": "THTR 4611", + "title": "Costume Design II" + }, + { + "name": "THTR 4721", + "title": "Scene Design II" + }, + { + "name": "THTR 4782", + "title": "Scene Design" + }, + { + "name": "THTR 4997", + "title": "Honors World of the Play" + }, + { + "name": "THTR 5012", + "title": "American Musical Theater" + }, + { + "name": "THTR 5121", + "title": "Musical Theater Dance Techniques" + }, + { + "name": "THTR 5134", + "title": "Directing for the Musical Stage" + }, + { + "name": "THTR 5211", + "title": "Speech for the Actor I" + }, + { + "name": "THTR 5212", + "title": "Speech for the Actor II" + }, + { + "name": "THTR 5221", + "title": "Acting I" + }, + { + "name": "THTR 5222", + "title": "Acting II" + }, + { + "name": "THTR 5231", + "title": "Vocal Production for the Actor I" + }, + { + "name": "THTR 5232", + "title": "Vocal Production for the Actor II" + }, + { + "name": "THTR 5241", + "title": "Dance for the Actor I" + }, + { + "name": "THTR 5242", + "title": "Dance for the Actor II" + }, + { + "name": "THTR 5261", + "title": "The Job Market" + }, + { + "name": "THTR 5287", + "title": "Rehearsal/Performance" + }, + { + "name": "THTR 5288", + "title": "Rehearsal & Performance" + }, + { + "name": "THTR 5387", + "title": "Directing Practicum I" + }, + { + "name": "THTR 5388", + "title": "Directing Practicum II" + }, + { + "name": "THTR 5392", + "title": "The Business of the Business in Theater" + }, + { + "name": "THTR 5487", + "title": "Musical Theater Practicum I" + }, + { + "name": "THTR 5587", + "title": "Musical Theater Practicum II" + }, + { + "name": "THTR 5613", + "title": "History of Decor" + }, + { + "name": "THTR 5625", + "title": "History of Fashion" + }, + { + "name": "THTR 5641", + "title": "Theatrical Model Making" + }, + { + "name": "THTR 5713", + "title": "Design Drafting" + }, + { + "name": "THTR 5741", + "title": "Design for TV and Film" + }, + { + "name": "THTR 5804", + "title": "Dramaturgy" + }, + { + "name": "THTR 5871", + "title": "Playwriting I" + }, + { + "name": "THTR 5872", + "title": "Playwriting II" + }, + { + "name": "THTR 5873", + "title": "Adaptation" + }, + { + "name": "THTR 5874", + "title": "Docudrama" + }, + { + "name": "THTR 5875", + "title": "Poetry As Performance" + }, + { + "name": "THTR 5892", + "title": "Script and Score Analysis" + }, + { + "name": "THTR 5893", + "title": "Lyric Seminar I" + }, + { + "name": "THTR 5894", + "title": "Lyric Seminar II" + }, + { + "name": "THTR 8001", + "title": "Seminar in Dramatic Literature" + }, + { + "name": "THTR 8002", + "title": "Seminar in Dramatic Literature" + }, + { + "name": "THTR 8101", + "title": "Stagecraft for Teachers" + }, + { + "name": "THTR 8102", + "title": "Acting 1 for Teachers" + }, + { + "name": "THTR 8103", + "title": "Introduction to the Director's Art for Teachers" + }, + { + "name": "THTR 8104", + "title": "Methods of Teaching Theater for Teachers" + }, + { + "name": "THTR 8105", + "title": "Stage Management for Teachers" + }, + { + "name": "THTR 8106", + "title": "World of the Play for Teachers" + }, + { + "name": "THTR 8107", + "title": "Acting II for Teachers" + }, + { + "name": "THTR 8108", + "title": "Directing for the Musical Stage for Teachers" + }, + { + "name": "THTR 8109", + "title": "Introduction to Design for Teachers" + }, + { + "name": "THTR 8111", + "title": "Welcome Backstage for Teachers" + }, + { + "name": "THTR 8211", + "title": "Speech for the Actor III" + }, + { + "name": "THTR 8212", + "title": "Speech for the Actor IV" + }, + { + "name": "THTR 8221", + "title": "Acting III" + }, + { + "name": "THTR 8222", + "title": "Acting IV" + }, + { + "name": "THTR 8231", + "title": "Vocal Production for the Actor III" + }, + { + "name": "THTR 8232", + "title": "Vocal Production for the Actor IV" + }, + { + "name": "THTR 8241", + "title": "Dance for the Actor III" + }, + { + "name": "THTR 8242", + "title": "Dance for the Actor IV" + }, + { + "name": "THTR 8321", + "title": "Costume Production" + }, + { + "name": "THTR 8421", + "title": "Drawing and Rendering for the Theater I" + }, + { + "name": "THTR 8422", + "title": "Drawing and Rendering for the Theater II" + }, + { + "name": "THTR 8431", + "title": "Scene Painting I" + }, + { + "name": "THTR 8432", + "title": "Scene Painting II" + }, + { + "name": "THTR 8482", + "title": "Projects in Technical Production" + }, + { + "name": "THTR 8511", + "title": "Lighting Design II" + }, + { + "name": "THTR 8521", + "title": "Lighting Design III" + }, + { + "name": "THTR 8611", + "title": "Costume Design II" + }, + { + "name": "THTR 8621", + "title": "Costume Design III" + }, + { + "name": "THTR 8622", + "title": "Draping and Flat Pattern Drafting I" + }, + { + "name": "THTR 8623", + "title": "Costume Crafts" + }, + { + "name": "THTR 8624", + "title": "Draping and Flat Pattern Drafting 2" + }, + { + "name": "THTR 8641", + "title": "Theatrical Makeup" + }, + { + "name": "THTR 8682", + "title": "Projects in Costuming" + }, + { + "name": "THTR 8711", + "title": "Scene Design II" + }, + { + "name": "THTR 8721", + "title": "Scene Design III" + }, + { + "name": "THTR 8881", + "title": "Playwriting III" + }, + { + "name": "THTR 8882", + "title": "Playwriting IV" + }, + { + "name": "THTR 8883", + "title": "Teaching Playwriting" + }, + { + "name": "THTR 8983", + "title": "Vocal Arranging" + }, + { + "name": "THTR 8984", + "title": "Music Direction for the Musical Theater Stage" + }, + { + "name": "THTR 8985", + "title": "Teach in Higher Education" + }, + { + "name": "THTR 9001", + "title": "Lyrics/Book Seminar I" + }, + { + "name": "THTR 9002", + "title": "Lyrics/Book Seminar II" + }, + { + "name": "THTR 9085", + "title": "Theater Internship" + }, + { + "name": "THTR 9087", + "title": "Graduate Ensemble Practicum" + }, + { + "name": "THTR 9211", + "title": "Speech for the Actor V" + }, + { + "name": "THTR 9212", + "title": "Speech for the Actor VI" + }, + { + "name": "THTR 9221", + "title": "Acting V" + }, + { + "name": "THTR 9222", + "title": "Acting VI" + }, + { + "name": "THTR 9231", + "title": "Vocal Production for the Actor V" + }, + { + "name": "THTR 9232", + "title": "Vocal Production for the Actor VI" + }, + { + "name": "THTR 9241", + "title": "Dance for the Actor V" + }, + { + "name": "THTR 9242", + "title": "Dance for the Actor VI" + }, + { + "name": "THTR 9251", + "title": "Acting for the Camera" + }, + { + "name": "THTR 9282", + "title": "Project in Acting" + }, + { + "name": "THTR 9283", + "title": "Projects in Acting" + }, + { + "name": "THTR 9382", + "title": "Projects in Directing I" + }, + { + "name": "THTR 9383", + "title": "Projects in Directing II" + }, + { + "name": "THTR 9387", + "title": "Directing Practicum III" + }, + { + "name": "THTR 9388", + "title": "Directing Practicum IV" + }, + { + "name": "THTR 9411", + "title": "Seminar in Technical Production I" + }, + { + "name": "THTR 9421", + "title": "Seminar in Technical Production II" + }, + { + "name": "THTR 9483", + "title": "Projects in Technical Production" + }, + { + "name": "THTR 9487", + "title": "Musical Theater Practicum III" + }, + { + "name": "THTR 9511", + "title": "Seminar in Lighting I" + }, + { + "name": "THTR 9521", + "title": "Seminar in Lighting II" + }, + { + "name": "THTR 9582", + "title": "Projects in Lighting" + }, + { + "name": "THTR 9587", + "title": "Musical Theater Practicum IV" + }, + { + "name": "THTR 9611", + "title": "Seminar in Costumes" + }, + { + "name": "THTR 9621", + "title": "Seminar in Costumes II" + }, + { + "name": "THTR 9682", + "title": "Projects in Costuming" + }, + { + "name": "THTR 9711", + "title": "Seminar in Scenery" + }, + { + "name": "THTR 9721", + "title": "Seminar in Scenery II" + }, + { + "name": "THTR 9782", + "title": "Projects in Scene Design" + }, + { + "name": "THTR 9882", + "title": "Projects in Playwriting" + }, + { + "name": "THTR 9982", + "title": "Projects in Playwriting" + }, + { + "name": "THTR 9991", + "title": "Research" + }, + { + "name": "THTR 9995", + "title": "Thesis" + }, + { + "name": "THTR E000", + "title": "Elective - needs evaluation" + }, + { + "name": "THTR F000", + "title": "* See Statement Below" + }, + { + "name": "THTR L000", + "title": "Elective LL" + }, + { + "name": "THTR T000", + "title": "Elective" + }, + { + "name": "THTR U000", + "title": "Elective UL" + }, + { + "name": "TFMA 0810", + "title": "GenEd Limited Edition GA" + }, + { + "name": "TFMA 0910", + "title": "Honors GenEd Limited Edition GA" + }, + { + "name": "THRC 0813", + "title": "Disability Identity" + }, + { + "name": "THRC 1102", + "title": "Adapted Sport, Recreation and Inclusive Leisure Services" + }, + { + "name": "THRC 2103", + "title": "Foundations of Therapeutic Recreation Practice" + }, + { + "name": "THRC 2104", + "title": "Therapeutic Recreation Modalities" + }, + { + "name": "THRC 2201", + "title": "Therapeutic Recreation and Developmental Disabilities" + }, + { + "name": "THRC 2203", + "title": "Assistive Technology in Recreation" + }, + { + "name": "THRC 2205", + "title": "Adventure Challenge/Programming" + }, + { + "name": "THRC 3096", + "title": "Assessment and Documentation in Therapeutic Recreation" + }, + { + "name": "THRC 3103", + "title": "Professional Seminar II" + }, + { + "name": "THRC 3111", + "title": "Health Promotion through Leisure Education" + }, + { + "name": "THRC 3185", + "title": "Internship I" + }, + { + "name": "THRC 3196", + "title": "Research and Evaluation in Therapeutic Recreation" + }, + { + "name": "THRC 3201", + "title": "Health, Activity, and Aging" + }, + { + "name": "THRC 3203", + "title": "Therapeutic Recreation and Mental Health" + }, + { + "name": "THRC 3282", + "title": "Independent Study in Therapeutic Recreation" + }, + { + "name": "THRC 4111", + "title": "Administration of Therapeutic Recreation" + }, + { + "name": "THRC 4185", + "title": "Internship II" + }, + { + "name": "THRC 4196", + "title": "Therapeutic Recreation Clinical Procedures" + }, + { + "name": "THRC 4205", + "title": "Therapeutic Recreation in Geriatric Service Settings" + }, + { + "name": "THRC 4211", + "title": "Therapeutic Recreation and Physical Disabilities" + }, + { + "name": "THRC 4213", + "title": "Therapeutic Recreation and Pediatric Healthcare" + }, + { + "name": "THRC 4250", + "title": "Special Topics in Recreational Therapy" + }, + { + "name": "THRC 5009", + "title": "Entrepreneurship in the Health Professions" + }, + { + "name": "THRC 5101", + "title": "Health, Activity and Aging" + }, + { + "name": "THRC 5102", + "title": "Orientation TR" + }, + { + "name": "THRC 5204", + "title": "Recreation Therapy and Assistive Technology" + }, + { + "name": "THRC 5205", + "title": "RT Geriatric Services" + }, + { + "name": "THRC 5211", + "title": "Rec Th & Phys Rehab" + }, + { + "name": "THRC 5212", + "title": "Play and Development" + }, + { + "name": "THRC 5213", + "title": "Therapeutic Play, Recreation and Children's Health" + }, + { + "name": "THRC 5214", + "title": "Child Life Interventions" + }, + { + "name": "THRC 5243", + "title": "Managing Dementia Care" + }, + { + "name": "THRC 5250", + "title": "Special Topics in TR Practicum" + }, + { + "name": "THRC 5261", + "title": "Therapeutic Recreation and Disabilities Seminar I" + }, + { + "name": "THRC 5271", + "title": "Therapeutic Recreation and Disabilities Seminar II" + }, + { + "name": "THRC 5301", + "title": "Evidence Based Practice in Recreation Therapy I" + }, + { + "name": "THRC 5302", + "title": "Evidence Based Practice in Recreation Therapy II" + }, + { + "name": "THRC 5311", + "title": "Conceptual and Contemporary Issues in Therapeutic Recreation" + }, + { + "name": "THRC 5312", + "title": "Leisure, Health, and Life Quality" + }, + { + "name": "THRC 5382", + "title": "Independent Study" + }, + { + "name": "THRC 5402", + "title": "Recreation Therapy Administration and Management" + }, + { + "name": "THRC 5442", + "title": "Clinical Programming and Practice in Therapeutic Recreation" + }, + { + "name": "THRC 5787", + "title": "Therapeutic Recreation Practicum" + }, + { + "name": "THRC 8133", + "title": "Family Centered Care" + }, + { + "name": "THRC 8161", + "title": "Methods in Community-Based Participatory Research (CBPR) for Health" + }, + { + "name": "THRC 8280", + "title": "Behavioral Change Seminar" + }, + { + "name": "THRC 9282", + "title": "Readings and Conference for Therapeutic Recreation" + }, + { + "name": "THRC 9995", + "title": "Master's Project in Therapeutic Recreation" + }, + { + "name": "THRC E000", + "title": "Elective - needs evaluation" + }, + { + "name": "TS 1185", + "title": "Field Study - Extern" + }, + { + "name": "TS 1285", + "title": "Field Study - Extern" + }, + { + "name": "TS 3082", + "title": "Independent Study" + }, + { + "name": "TS 4082", + "title": "Independent Study" + }, + { + "name": "TS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "TS F000", + "title": "* See Statement Below" + }, + { + "name": "TS L000", + "title": "Elective LL" + }, + { + "name": "TS P000", + "title": "Elective P" + }, + { + "name": "TS T000", + "title": "Elective" + }, + { + "name": "TS U000", + "title": "Elective UL" + }, + { + "name": "THM 1311", + "title": "The Business of Tourism and Hospitality" + }, + { + "name": "THM 2311", + "title": "Global Issues in Travel" + }, + { + "name": "THM 2312", + "title": "Tourism and Hospitality Sales" + }, + { + "name": "THM 2313", + "title": "Financial Issues in Tourism and Hospitality" + }, + { + "name": "THM 3311", + "title": "Organization Management in Tourism and Hospitality" + }, + { + "name": "THM 3312", + "title": "Strategic Decision Making in Tourism and Hospitality Management" + }, + { + "name": "THM 3314", + "title": "Legal Issues in Tourism and Hospitality" + }, + { + "name": "THM 3320", + "title": "Special Topics in Hospitality Management" + }, + { + "name": "THM 3321", + "title": "Tourism Planning and Development" + }, + { + "name": "THM 3322", + "title": "Destination Management Organizations" + }, + { + "name": "THM 3324", + "title": "Hospitality Operations" + }, + { + "name": "THM 3325", + "title": "Food and Beverage Management" + }, + { + "name": "THM 3327", + "title": "Advanced Destination Marketing Systems" + }, + { + "name": "THM 3328", + "title": "Gaming and Casino Management" + }, + { + "name": "THM 3329", + "title": "Revenue Management in Tourism and Hospitality Management" + }, + { + "name": "THM 3330", + "title": "Special Topics in Destination and Event Management" + }, + { + "name": "THM 3396", + "title": "Marketing in Tourism and Hospitality" + }, + { + "name": "THM 4321", + "title": "Hospitality Management Systems" + }, + { + "name": "THM 4322", + "title": "Designing Tourism Experiences" + }, + { + "name": "THM 4396", + "title": "Hospitality Management Systems" + }, + { + "name": "THM 4397", + "title": "Designing Tourism Experience" + }, + { + "name": "THM 4398", + "title": "Contemporary Issues in Tourism, Hospitality and Event Management" + }, + { + "name": "THM 5311", + "title": "Service Management for the Tourism and Hospitality Industry" + }, + { + "name": "THM 5312", + "title": "Legal Issues for Hospitality and Event Enterprises" + }, + { + "name": "THM 5313", + "title": "Financial Mgt Tour/Hosp" + }, + { + "name": "THM 5314", + "title": "e-Business for Tourism and Hospitality" + }, + { + "name": "THM 5315", + "title": "Strategic Tourism and Hospitality Marketing" + }, + { + "name": "THM 5316", + "title": "Strategic Management in the Tourism and Hospitality Industry" + }, + { + "name": "THM 5317", + "title": "Tourism and Hospitality Management Consulting Project" + }, + { + "name": "THM 5318", + "title": "Sustainable Tourism Management" + }, + { + "name": "THM 5320", + "title": "Special Topics in Tourism and Hospitality Management" + }, + { + "name": "THM 5321", + "title": "Tourism Analytics" + }, + { + "name": "THM 5322", + "title": "Strategic Brand Management" + }, + { + "name": "THM 5323", + "title": "Sustainable Tourism Development" + }, + { + "name": "THM 5324", + "title": "International Tourism" + }, + { + "name": "THM 5325", + "title": "Gaming and Casino Management" + }, + { + "name": "THM 5326", + "title": "Consumer Behavior in Tourism and Hospitality" + }, + { + "name": "THM 5327", + "title": "Customer Relationship Management in Tourism and Hospitality" + }, + { + "name": "THM 5328", + "title": "Tourism Economics and Policy" + }, + { + "name": "THM 5329", + "title": "New Media and Distribution" + }, + { + "name": "THM 5331", + "title": "Hospitality Operations Management" + }, + { + "name": "THM 5332", + "title": "Management Information Systems in Tourism and Hospitality" + }, + { + "name": "THM 5333", + "title": "Seminar for Information Technology in Tourism and Hospitality" + }, + { + "name": "THM 5334", + "title": "The Business of Event Management" + }, + { + "name": "THM 5335", + "title": "Effective Sales Management" + }, + { + "name": "THM 5336", + "title": "Revenue Management and Hotel Analytics" + }, + { + "name": "THM 5341", + "title": "Destination Events - A Global Perspective" + }, + { + "name": "THM 5342", + "title": "Destination Management and Marketing" + }, + { + "name": "THM 5343", + "title": "Cultural Intelligence" + }, + { + "name": "THM 5344", + "title": "Crisis, Risk and Disaster Management" + }, + { + "name": "THM 5345", + "title": "Understanding Tourism in the 21st Century" + }, + { + "name": "THM 5422", + "title": "Entrepreneurship and Real Estate" + }, + { + "name": "THM 5485", + "title": "Graduate Internship" + }, + { + "name": "THM 5601", + "title": "Service Industry Analytics" + }, + { + "name": "THM 5602", + "title": "Service Experience Design" + }, + { + "name": "THM 5603", + "title": "Food and Beverage Management" + }, + { + "name": "THM 5604", + "title": "Event Logistics and Risk Management" + }, + { + "name": "THM 5605", + "title": "Entrepreneurial Thinking for Hospitality and Event Industries" + }, + { + "name": "THM 5606", + "title": "Hospitality Cost Control" + }, + { + "name": "THM 5801", + "title": "Hospitality Asset Lifecycle Optimization" + }, + { + "name": "THM 5802", + "title": "Successful Compliance Strategies for Hospitality Asset Management" + }, + { + "name": "THM 5803", + "title": "Business Analytics for Executive Decisions in Hospitality" + }, + { + "name": "THM 5804", + "title": "Winning Strategies for Hospitality Asset Portfolio Management" + }, + { + "name": "THM E000", + "title": "Elective - needs evaluation" + }, + { + "name": "THM L000", + "title": "Elective LL" + }, + { + "name": "THM T000", + "title": "Elective" + }, + { + "name": "THM T007", + "title": "Elective" + }, + { + "name": "THM U000", + "title": "Elective UL" + }, + { + "name": "TYLE 0805", + "title": "Race, Identity and Experience in American Art" + }, + { + "name": "TYLE 0810", + "title": "GenEd Limited Edition GA" + }, + { + "name": "TYLE 0905", + "title": "Honors Race, Identity and Experience in American Art" + }, + { + "name": "TYLE 0910", + "title": "Honors GenEd Limited Edition GA" + }, + { + "name": "TYLE 1071", + "title": "Visual Studies 1 Introduction to Visual Studies: History, Theory, Practice" + }, + { + "name": "TYLE 1111", + "title": "Visualizing Urgency" + }, + { + "name": "TYLE 1911", + "title": "Honors Visualizing Urgency" + }, + { + "name": "TYLE 1971", + "title": "Honors Visual Studies 1 Introduction to Visual Studies: History, Theory, Practice" + }, + { + "name": "TYLE 2468", + "title": "Search and Destroy: Punk's DIY Rebellion" + }, + { + "name": "TYLE 2968", + "title": "Honors Search and Destroy: Punk's DIY Rebellion" + }, + { + "name": "TYLE 3211", + "title": "Creative Cottage Industrialist" + }, + { + "name": "TYLE 3349", + "title": "Tyler School Japan Art, Media and Design Workshop" + }, + { + "name": "TYLE 3385", + "title": "Field Internship" + }, + { + "name": "TYLE 3585", + "title": "Diamond Peer Teachers - Internship I" + }, + { + "name": "TYLE 3586", + "title": "Diamond Peer Teachers - Internship II" + }, + { + "name": "TYLE 4285", + "title": "Rome Internship" + }, + { + "name": "TYLE 8000", + "title": "Interdisciplinary Seminar" + }, + { + "name": "TYLE 8001", + "title": "Graduate Professional Practices" + }, + { + "name": "TYLE 8149", + "title": "Japanese Art, Theory, and Design Workshop" + }, + { + "name": "TYLE 8501", + "title": "Theories of Visual Representation" + }, + { + "name": "TYLE 8985", + "title": "Teaching in Higher Education" + }, + { + "name": "TYLE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "TYLE F000", + "title": "* See Statement Below" + }, + { + "name": "UNVS 1001", + "title": "First Year Seminar I" + }, + { + "name": "UNVS 1002", + "title": "First Year Seminar II" + }, + { + "name": "UNVS 1003", + "title": "Academic Bridge for International Students" + }, + { + "name": "UNVS 1004", + "title": "President's Seminar I: Organizational Change at Temple University" + }, + { + "name": "UNVS 1005", + "title": "President's Seminar II: Organizational Change at Temple University" + }, + { + "name": "UNVS 1006", + "title": "Academic Success Strategies" + }, + { + "name": "UNVS 2001", + "title": "Sophomore Seminar: Planning for Success" + }, + { + "name": "UNVS 2002", + "title": "Transfer Seminar: Planning for Success" + }, + { + "name": "UNVS 2003", + "title": "Global Citizenship" + }, + { + "name": "UNVS 2004", + "title": "Tale of Two Cities: Paris & Rome - Histories, Legends, Imaginations" + }, + { + "name": "UNVS 2005", + "title": "Writing About the Self: Exploring Opportunities and Communicating Strengths" + }, + { + "name": "UNVS 3001", + "title": "Junior Seminar: Pre-Professional Preparation" + }, + { + "name": "UNVS 3002", + "title": "Peer Mentor Development" + }, + { + "name": "UNVS 3003", + "title": "Resident Assistant Development Seminar" + }, + { + "name": "UNVS E000", + "title": "Elective - needs evaluation" + }, + { + "name": "UNVS T000", + "title": "Elective" + }, + { + "name": "UNVS T001", + "title": "Elective" + }, + { + "name": "UNVS T002", + "title": "Elective" + }, + { + "name": "UBTH 5001", + "title": "Urban Bioethics 1 (Professional Students)" + }, + { + "name": "UBTH 5002", + "title": "Urban Bioethics 2 (Professional Students)" + }, + { + "name": "UBTH 5022", + "title": "Community Engagement I (Professional Students)" + }, + { + "name": "UBTH 5023", + "title": "Community Engagement II (Professional Students)" + }, + { + "name": "UBTH 5031", + "title": "The Values, Ethics, & Economics of Health Care Delivery in Urban Communities (Professional Students)" + }, + { + "name": "UBTH 5041", + "title": "Critical Social Science and Urban Bioethics (Professional Students)" + }, + { + "name": "UBTH 5082", + "title": "Independent Study 1 (Professional Students)" + }, + { + "name": "UBTH 5101", + "title": "Urban Bioethics 1 (Graduate Students)" + }, + { + "name": "UBTH 5102", + "title": "Urban Bioethics 2 (Graduate Students)" + }, + { + "name": "UBTH 5122", + "title": "Community Engagement I (Graduate Students)" + }, + { + "name": "UBTH 5123", + "title": "Community Engagement II (Graduate Students)" + }, + { + "name": "UBTH 5131", + "title": "The Values, Ethics, & Economics of Health Care Delivery in Urban Communities (Graduate Students)" + }, + { + "name": "UBTH 5141", + "title": "Critical Social Science and Urban Bioethics (Graduate Students)" + }, + { + "name": "UBTH 5182", + "title": "Independent Study 1 (Graduate Students)" + }, + { + "name": "UBTH 5189", + "title": "Urban Bioethics Field Study 1" + }, + { + "name": "UBTH 5210", + "title": "Special Topics: Social Science Approaches to Urban Bioethics" + }, + { + "name": "UBTH 5220", + "title": "Special Topics: Urban Bioethics at the Bedside" + }, + { + "name": "UBTH 5230", + "title": "Special Topics: Current Topics in Urban Bioethics" + }, + { + "name": "UBTH 5240", + "title": "Special Topics: Research and Urban Bioethics" + }, + { + "name": "UBTH 9082", + "title": "Independent Study 2 (Professional Students)" + }, + { + "name": "UBTH 9182", + "title": "Independent Study 2 (Graduate Students)" + }, + { + "name": "UBTH 9189", + "title": "Urban Bioethics Field Study 2" + }, + { + "name": "UBTH 9995", + "title": "MA in Urban Bioethics Thesis (Professional Students)" + }, + { + "name": "UBTH 9996", + "title": "MA in Urban Bioethics Thesis (Graduate Students)" + }, + { + "name": "URBE 0855", + "title": "Education for Liberation Here and Abroad" + }, + { + "name": "URBE 1006", + "title": "Schooling and Development in Third World Societies" + }, + { + "name": "URBE 1909", + "title": "Honors Schooling and Development in Third World Societies" + }, + { + "name": "URBE 2320", + "title": "Special Seminar in Urban Education" + }, + { + "name": "URBE 3990", + "title": "Honors Special Seminar in Urban Education" + }, + { + "name": "URBE 4301", + "title": "Partnerships between Schools and Communities" + }, + { + "name": "URBE 4496", + "title": "Understanding Urban Communities" + }, + { + "name": "URBE 5401", + "title": "Policy and Practice in Urban Education" + }, + { + "name": "URBE 5417", + "title": "The Urban Environment" + }, + { + "name": "URBE 5501", + "title": "Urban Schools" + }, + { + "name": "URBE 5515", + "title": "Service Learning and Community Development" + }, + { + "name": "URBE 5516", + "title": "School-Community Partnerships in Urban Settings" + }, + { + "name": "URBE 5565", + "title": "The Origins of Urban Education" + }, + { + "name": "URBE 5611", + "title": "Reforming City Schools" + }, + { + "name": "URBE 5620", + "title": "Special Topics in Urban Education" + }, + { + "name": "URBE 5630", + "title": "Special Seminar in Urban Education" + }, + { + "name": "URBE 8602", + "title": "Theory Seminar in Urban Schools" + }, + { + "name": "URBE 8603", + "title": "Urban Education Doctoral Capstone" + }, + { + "name": "URBE 9982", + "title": "Independent Research in Urban Education" + }, + { + "name": "URBE 9991", + "title": "Research Practicum" + }, + { + "name": "URBE 9996", + "title": "Masters Thesis" + }, + { + "name": "URBE 9999", + "title": "Doctoral Dissertation" + }, + { + "name": "URBE E000", + "title": "Elective - needs evaluation" + }, + { + "name": "VS 1058", + "title": "Visual Studies 1: Interdisciplinary Studio Seminar 1" + }, + { + "name": "VS 1151", + "title": "Visual Studies 1 Foundation: Drawing" + }, + { + "name": "VS 1351", + "title": "Visual Studies 1 Foundation: 3D" + }, + { + "name": "VS 1451", + "title": "Visual Studies 1 Foundation: Composition and Color" + }, + { + "name": "VS 1651", + "title": "Visual Studies 1 Foundation: Digital Imaging" + }, + { + "name": "VS 2001", + "title": "VS Seminar: Identities" + }, + { + "name": "VS 2002", + "title": "VS Seminar: Narratives" + }, + { + "name": "VS 2003", + "title": "VS Seminar: Sites" + }, + { + "name": "VS 2004", + "title": "VS Seminar: Global Citizens" + }, + { + "name": "VS 2058", + "title": "Visual Studies 2: Interdisciplinary Studio Seminar 2" + }, + { + "name": "VS 2152", + "title": "Visual Studies 2 Concept Studio: Drawing" + }, + { + "name": "VS 2252", + "title": "Visual Studies 2 Concept Studio: Painting" + }, + { + "name": "VS 2352", + "title": "Visual Studies 2 Concept Studio: 3D Structures" + }, + { + "name": "VS 2452", + "title": "Visual Studies 2 Studio: Making Democracy: Visual Tactics" + }, + { + "name": "VS 2552", + "title": "Visual Studies 2 Concept Studio: Print Imaging" + }, + { + "name": "VS 2652", + "title": "Visual Studies 2 Concept Studio: Digital Imaging" + }, + { + "name": "VS 2852", + "title": "Visual Studies 2 Concept Studio: Photo Imaging / Digital" + }, + { + "name": "VS 2862", + "title": "Visual Studies 2 Concept Studio: Photo Imaging / Darkroom" + }, + { + "name": "VS 3058", + "title": "Visual Studies 3 Interdisciplinary Studio Seminar 3" + }, + { + "name": "VS 3100", + "title": "Visual Studies 3 Studio: Special Topics" + }, + { + "name": "VS 3253", + "title": "Visual Studies 3 Concept Studio: Hybrid Painting" + }, + { + "name": "VS 3553", + "title": "Visual Studies 3 Concept Studio: Hybrid Print Imaging" + }, + { + "name": "VS 3653", + "title": "Visual Studies 3 Concept Studio: Hybrid Digital Imaging" + }, + { + "name": "VS 3863", + "title": "Visual Studies 3 Concept Studio: Hybrid Photo Imaging/Darkroom" + }, + { + "name": "VS 4098", + "title": "Visual Studies 4 Interdisciplinary Studio Seminar 4" + }, + { + "name": "VS 4485", + "title": "Field Internship" + }, + { + "name": "VS 4511", + "title": "Curatorial Lab" + }, + { + "name": "VS 4554", + "title": "Visual Studies 4 Concept Studio: Interdisciplinary Print Imaging" + }, + { + "name": "VS 4654", + "title": "Visual Studies 4 Concept Studio: Interdisciplinary Digital Imaging" + }, + { + "name": "VS 4754", + "title": "Visual Studies 4 Interdisciplinary Moving Image" + }, + { + "name": "VS E000", + "title": "Elective - needs evaluation" + } +] \ No newline at end of file diff --git a/s3/clientScripts/api.js b/s3/clientScripts/api.js index 3324b37..7ab1753 100644 --- a/s3/clientScripts/api.js +++ b/s3/clientScripts/api.js @@ -1,3 +1,5 @@ +/*jshint esversion: 8*/ + /** * postClassTimes sends a POST request to get the schedules. * @param {Object} params : An object containing the following keys: @@ -5,32 +7,54 @@ * * days: a string containing one or more days of the week ("M", "T", "W", "R", "F") * * startTime: a number representing the start time in 24-hour format. * * endTime: a number representing the end time in 24-hour format. - * * campus: a string representing the campus to do the search on, e.g. "MN" for Main. + * * campus: a array containing strings representing the campus to do the search on, e.g. ["MN"] for Main. * @returns {Array} an array containing all the schedules. */ async function postClassTimes(params) { let courses = params.courses || []; - let days = params.days || "MTWRF" + let days = params.days || "MTWRF"; let startTime = params.startTime || 0; let endTime = params.endTime || 2359; - let campus = params.campus || "MN"; + let campus = params.campus || ["MN"]; + + let reqBody = JSON.stringify({ + courses: courses, + days: days, + startTime: startTime, + endtime: endTime, + campus: campus + }); + + console.log(`Sending POST with body ${reqBody}`); var response = await fetch('https://m9uqnix64d.execute-api.us-east-2.amazonaws.com/dev', { method: 'post', headers: { - 'Accept': 'application/json', - 'Content-Type': 'application/json' + 'Accept': 'application/json' }, - body: JSON.stringify({ - "courses": courses, - "days": days, - "startTime": startTime, - "endtime": endTime, - "campus": campus - }) + body: reqBody }); var results = await response.json(); return results; -} \ No newline at end of file +} + +async function getClasses() { + let response = await $.getJSON("classes.json"); + + let results = await response; + + let classes = {}; + for(let currClass of results) { + classes[currClass.name + ': ' + currClass.title] = currClass.name; + } + + var courseChips = Chips({ + availableTags: classes, + inputTag: "course-search", + chipsDiv: "course-chips" + }); + + return courseChips; +} diff --git a/s3/clientScripts/filters.js b/s3/clientScripts/filters.js new file mode 100644 index 0000000..26e1187 --- /dev/null +++ b/s3/clientScripts/filters.js @@ -0,0 +1,103 @@ +/** + * Filters the schedules by the selected days + */ +function filterByDay() { + var schedules = JSON.parse(sessionStorage.getItem('schedules')); + var schedulesFilteredByTime = JSON.parse(sessionStorage.getItem('schedulesFilteredByTime')); + var selectedDays = []; + + //Get the selected days to be filter by (eg. MWF) + var previouslySelectedDays = document.getElementsByClassName("day-picker"); + for (let i = 0; i < previouslySelectedDays.length; i++) { + if (previouslySelectedDays[i].classList.contains('active')) { + selectedDays.push(previouslySelectedDays[i].innerHTML); + } + } + + //Removes the schedules that do not follow the filter rules + if(selectedDays.length > 0) { + for(var i = 0; i < schedules.length; i++) { + for (var j = 0; j < schedules[i].length; j++) { + if (selectedDays.indexOf((schedules[i][j].day)) == -1) { + schedules.splice(i, 1); + i -= 1; + break; + } + } + } + } + sessionStorage.setItem('schedulesFilteredByDay', JSON.stringify(schedules)); + + //Get the schedules that are common in the the schedules filtered by day and time + var results = []; + for (var i = 0; i < schedules.length; i++) { + if (JSON.stringify(schedulesFilteredByTime).includes(JSON.stringify(schedules[i]))) { + results.push(schedules[i]); + } + } + + addSchedules(results); + if(results.length > 0) { + Schedule.setSchedule('#schedule-div', results[0]); + } else { + Schedule.setSchedule('#schedule-div'); + } +} + + +/** + * Filters by the selected time frames + */ +function filterByTime() { + var schedules = JSON.parse(sessionStorage.getItem('schedules')); + var schedulesFilteredByDay = JSON.parse(sessionStorage.getItem('schedulesFilteredByDay')); + + var startTimeFilter = 0; + var endTimeFilter = 2399; + + //Gets the time filter values + var previouslySelectedTimes = document.getElementsByClassName("dropdown-item"); + for (let i = 0; i < previouslySelectedTimes.length; i++) { + if (previouslySelectedTimes[i].classList.contains('active')) { + if(previouslySelectedTimes[i].parentNode.id == "startDropdown") { + startTimeFilter = Number(previouslySelectedTimes[i].getAttribute("href").toString().substr(1)); + + } else if(previouslySelectedTimes[i].parentNode.id == "endDropdown") { + endTimeFilter = Number(previouslySelectedTimes[i].getAttribute("href").toString().substr(1)); + } + } + } + + //Removes the schedules that do not follow the filter rules + for (var i = 0; i < schedules.length; i++) { + for (var j = 0; j < schedules[i].length; j++) { + if ((schedules[i][j].startTime < startTimeFilter) || (schedules[i][j].endTime > endTimeFilter)) { + schedules.splice(i, 1); + i -= 1; + break; + } + } + } + + sessionStorage.setItem('schedulesFilteredByTime', JSON.stringify(schedules)); + + //Get the schedules that are common in the the schedules filtered by day and time + var results = []; + for (var i = 0; i < schedules.length; i++) { + if (JSON.stringify(schedulesFilteredByDay).includes(JSON.stringify(schedules[i]))) { + results.push(schedules[i]); + } + } + + console.log("Filtered by day length: " + schedulesFilteredByDay.length); + console.log("Filtered by time length: " + schedules.length); + console.log("Results: " + results.length); + + addSchedules(results); + if(results.length > 0) { + Schedule.setSchedule('#schedule-div', results[0]); + } else { + Schedule.setSchedule('#schedule-div'); + } + +} diff --git a/s3/clientScripts/form.js b/s3/clientScripts/form.js index 9152fc3..208db0f 100644 --- a/s3/clientScripts/form.js +++ b/s3/clientScripts/form.js @@ -1,7 +1,10 @@ +/*jshint esversion: 8*/ +/*jshint -W083*/ + /** * * @param {Object} params : an Object containing the following keys: - * * availableTags: a list of available chips. + * * availableTags: an object of available chips. * * inputTag: the ID the input element. * * chipsDiv : the ID of the chips div tag. */ @@ -9,17 +12,36 @@ function Chips(params) { var Chips = {}; var selected = []; - var availableTags = params.availableTags || []; + var availableTags = params.availableTags || {}; $(function() { $(`#${params.inputTag}`).autocomplete({ - source: availableTags, + source: function(request, response) { + let results = $.ui.autocomplete.filter(Object.keys(availableTags), request.term); + + // Place results that start with request.term before results that do not. + let startsWithResults = []; + let notStartsWithResults = []; + for(let result of results) { + if(!selected.includes(result)) { + if(result.startsWith(request.term)) { + startsWithResults.push(result); + } else { + notStartsWithResults.push(result); + } + } + } + startsWithResults.sort(); + notStartsWithResults.sort(); + results = startsWithResults.concat(notStartsWithResults); + + // List only the first 10 results. + response(results.slice(0, 10)); + }, select: function(event, ui) { var value = ui.item.value; selected.push(value); refreshDiv(); - var i = availableTags.indexOf(value); - availableTags.splice(i, 1); event.preventDefault(); $(`#${params.inputTag}`).focusout(); $(`#${params.inputTag}`).val(''); @@ -28,33 +50,33 @@ function Chips(params) { }); function refreshDiv(){ - $(`#${params.inputTag}`).val(selected.join(',')); + $(`#${params.inputTag}`).val(); $(`#${params.chipsDiv}`).empty(); for(let selectedTag of selected) { - $(`#${params.chipsDiv}`).append( - $( - ` - ${selectedTag}   + let selectedName = selectedTag.split(':')[0]; + let selectedTitle = selectedTag.split(':')[1]; + let newChip = $( + ` + ${selectedName}   + ` + ).append( + $(` + + X ` - ).append( - $(` - - X - ` - ).on('click', function() { - availableTags.push(selectedTag); - var i = selected.indexOf(selectedTag); - selected.splice(i, 1); - refreshDiv(); - }) - ) + ).on('click', function() { + var i = selected.indexOf(selectedTag); + selected.splice(i, 1); + refreshDiv(); + }) ); + $(`#${params.chipsDiv}`).append(newChip); } } Chips.getSelected = () => { - return selected; + return selected.map(e => e.split(':')[0]); } return Chips; -} \ No newline at end of file +} diff --git a/s3/clientScripts/schedule.js b/s3/clientScripts/schedule.js index 74329e5..10b8b8a 100644 --- a/s3/clientScripts/schedule.js +++ b/s3/clientScripts/schedule.js @@ -1,3 +1,6 @@ +/*jshint esversion: 8*/ +/*jshint -W014*/ + var Schedule = {}; /** @@ -26,9 +29,9 @@ Schedule.init = () => { } // Create row divs. - for(var i = 8; i < 18; i++) { - let displayNum = i; - if(i > 12) { + for(var j = 8; j < 18; j++) { + let displayNum = j; + if(j > 12) { displayNum -= 12; } $('.schedule').append( @@ -39,7 +42,7 @@ Schedule.init = () => { ` ); } -} +}; /** * setSchedule adds classTime objects to the Schedule. @@ -48,6 +51,7 @@ Schedule.init = () => { */ Schedule.setSchedule = (divId, schedule) => { Schedule.resetSchedule(divId); + schedule = schedule || []; for(var classTime of schedule) { Schedule.addClassTime(divId, classTime); @@ -81,9 +85,9 @@ Schedule.addClassTime = (divId, classTime) => { var rgb = [0, 0, 0]; - for (var i = 0; i < 3; i++) { - var value = (hash >> (i * 8)) & 255; - rgb[i] = value; + for (var j = 0; j < 3; j++) { + var value = (hash >> (j * 8)) & 255; + rgb[j] = value; } return `rgba(${rgb[0]}, ${rgb[1]}, ${rgb[2]}, 0.5)`; } @@ -123,8 +127,7 @@ Schedule.addBox = (divId, classTime, dayOfWeek) => { */ let verticalOffset = (Time.getHour(classTime.startTime) - 8) * 60 + Time.getMins(classTime.startTime) - - Schedule.dayOfWeekDivOffsets[dayOfWeek] - + 3; + - Schedule.dayOfWeekDivOffsets[dayOfWeek]; // We then update dayOfWeekDivOffsets with the current height. Schedule.dayOfWeekDivOffsets[dayOfWeek] += height; @@ -163,7 +166,7 @@ Schedule.resetSchedule = (divId) => { "thursday": 0, "friday": 0 }; -} +}; /** * openClassModal replaces the text within a modal with the correct information and opens it. @@ -180,4 +183,4 @@ Schedule.openClassModal = (classTime) => {