From e3e241a747746a7bd2b308856209ae6d45bac9c7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 22 Jan 2024 16:14:43 -0500 Subject: [PATCH 1/4] Created mapping for UofM records --- .gitignore | 3 ++ mappings/UofM.py | 71 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 mappings/UofM.py diff --git a/.gitignore b/.gitignore index 4a012b5286..91f2965d7e 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ config/local* tags # Vim *.swp +# Ingest JSON files +UofM_CSV.json +chicagoISAC_metadata.json diff --git a/mappings/UofM.py b/mappings/UofM.py new file mode 100644 index 0000000000..607aef4dee --- /dev/null +++ b/mappings/UofM.py @@ -0,0 +1,71 @@ +from .json import JSONMapping + +class UofMMapping(JSONMapping): + def __init__(self, source): + super().__init__(source, {}) + self.mapping = self.createMapping() + + + def createMapping(self): + return { + 'title': ('Title', '{0}'), + 'authors': ('Author(s)', '{0}'), + 'dates': [('Pub Date', '{0}|publication_date')], + 'publisher': [('Publisher (from Projects)', '{0}')], + 'spatial': ('Michigan', '{0}'), + 'identifiers': [ + ('ISBN', '{0}|isbn'), + ('OCLC', '{0}|oclc') + ], + 'contributors': [('Contributors', '{0}|||contributor')], + 'subjects': [('Subject 1', '{0}||')], + } + + def applyFormatting(self): + self.record.source = 'UofM' + + source_id = self.record.identifiers[1].split('|')[0] + self.record.source_id = f'UofM_{source_id}' + + if self.record.authors: + self.record.authors = self.formatAuthors() + if self.record.subjects: + self.record.subjects = self.formatSubjects() + if self.record.identifiers: + self.record.identifiers = self.formatIdentifiers() + + def formatAuthors(self): + authorList = [] + if ';' in self.record.authors: + authorList = self.record.authors.split('; ') + newAuthorList = [f'{author}|||true' for author in authorList] + return newAuthorList + else: + authorList.append(f'{self.record.authors}|||true)') + return authorList + + def formatSubjects(self): + subjectList = [] + if '|' in self.record.subjects: + subjectListList = self.record.subjects.split('; ') + newSubjectList = [f'{author}|||true' for author in subjectList] + return newSubjectList + else: + subjectList.append(f'{self.record.authors}|||true)') + return subjectList + + def formatIdentifiers(self): + if 'isbn' in self.record.identifiers[0]: + isbnString = self.record.identifiers[0].split('|')[0] + if ';' in isbnString: + isbnList = isbnString.split('; ') + newISBNList = [f'{isbn}|isbn' for isbn in isbnList] + if len(self.record.identifiers) > 1 and 'oclc' in self.record.identifiers[1]: + newISBNList.append(f'{self.record.identifiers[1]}|oclc') + return newISBNList + else: + return newISBNList + + + + From b30c9009044de3f2e0c7b9126273c4a4121f48c7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 24 Jan 2024 16:03:00 -0500 Subject: [PATCH 2/4] SFr-1775_UofMichiganIngestion --- CHANGELOG.md | 5 +- mappings/UofM.py | 34 ++++--- processes/UofM.py | 159 ++++++++++++++++++++++++++++++++ processes/__init__.py | 1 + tests/unit/test_UofM_mapping.py | 49 ++++++++++ tests/unit/test_UofM_process.py | 106 +++++++++++++++++++++ 6 files changed, 339 insertions(+), 15 deletions(-) create mode 100644 processes/UofM.py create mode 100644 tests/unit/test_UofM_mapping.py create mode 100644 tests/unit/test_UofM_process.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c533d23d1..1e116e1d6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,12 @@ # CHANGELOG -## unreleased version -- v0.12.4 -## Added -New /fulfill endpoint with ability to check for NYPL login in Bearer authorization header ## unreleased version -- v0.12.4 ## Added - New script to add nypl_login flag to Links objects - Added nypl_login flag to nypl mapping - New APIUtils method to generate a presigned url for S3 actions +- New /fulfill endpoint with ability to check for NYPL login in Bearer authorization header +- Added new University of Michigan process and mapping for ingestion ## Fixed - NYPL records not being added due to SQLAlchemy error - Bardo CCE API and Hathi DataFiles URL updated diff --git a/mappings/UofM.py b/mappings/UofM.py index 607aef4dee..92b85ea964 100644 --- a/mappings/UofM.py +++ b/mappings/UofM.py @@ -1,41 +1,48 @@ from .json import JSONMapping +import logging class UofMMapping(JSONMapping): def __init__(self, source): super().__init__(source, {}) - self.mapping = self.createMapping() - + self.mapping = self.createMapping() def createMapping(self): return { 'title': ('Title', '{0}'), 'authors': ('Author(s)', '{0}'), 'dates': [('Pub Date', '{0}|publication_date')], - 'publisher': [('Publisher (from Projects)', '{0}')], - 'spatial': ('Michigan', '{0}'), + 'publisher': [('Publisher (from Projects)', '{0}||')], 'identifiers': [ ('ISBN', '{0}|isbn'), ('OCLC', '{0}|oclc') ], 'contributors': [('Contributors', '{0}|||contributor')], - 'subjects': [('Subject 1', '{0}||')], + 'subjects': ('Subject 1', '{0}'), } def applyFormatting(self): + self.record.has_part = [] + self.record.spatial = 'Michigan' self.record.source = 'UofM' - source_id = self.record.identifiers[1].split('|')[0] - self.record.source_id = f'UofM_{source_id}' - if self.record.authors: self.record.authors = self.formatAuthors() + if self.record.subjects: self.record.subjects = self.formatSubjects() + if self.record.identifiers: + if len(self.record.identifiers) == 1: + source_id = self.record.identifiers[0].split('|')[0] + else: + source_id = self.record.identifiers[1].split('|')[0] + + self.record.source_id = f'UofM_{source_id}' self.record.identifiers = self.formatIdentifiers() def formatAuthors(self): authorList = [] + if ';' in self.record.authors: authorList = self.record.authors.split('; ') newAuthorList = [f'{author}|||true' for author in authorList] @@ -46,12 +53,13 @@ def formatAuthors(self): def formatSubjects(self): subjectList = [] + if '|' in self.record.subjects: - subjectListList = self.record.subjects.split('; ') - newSubjectList = [f'{author}|||true' for author in subjectList] + subjectList = self.record.subjects.split('|') + newSubjectList = [f'{subject}||' for subject in subjectList] return newSubjectList else: - subjectList.append(f'{self.record.authors}|||true)') + subjectList.append(f'{self.record.subjects}||') return subjectList def formatIdentifiers(self): @@ -61,10 +69,12 @@ def formatIdentifiers(self): isbnList = isbnString.split('; ') newISBNList = [f'{isbn}|isbn' for isbn in isbnList] if len(self.record.identifiers) > 1 and 'oclc' in self.record.identifiers[1]: - newISBNList.append(f'{self.record.identifiers[1]}|oclc') + newISBNList.append(f'{self.record.identifiers[1]}') return newISBNList else: return newISBNList + + return self.record.identifiers diff --git a/processes/UofM.py b/processes/UofM.py new file mode 100644 index 0000000000..5a77ef61b7 --- /dev/null +++ b/processes/UofM.py @@ -0,0 +1,159 @@ +import json +import os +from requests.exceptions import HTTPError, ConnectionError +from botocore.exceptions import ClientError + +from .core import CoreProcess +from urllib.error import HTTPError +from mappings.core import MappingError +from mappings.UofM import UofMMapping +from managers import WebpubManifest +from logger import createLog + +logger = createLog(__name__) + +class UofMProcess(CoreProcess): + + def __init__(self, *args): + super(UofMProcess, self).__init__(*args[:4]) + + self.ingestOffset = int(args[5] or 0) + self.ingestLimit = (int(args[4]) + self.ingestOffset) if args[4] else 5000 + self.fullImport = self.process == 'complete' + + # Connect to database + self.generateEngine() + self.createSession() + + # S3 Configuration + self.s3Bucket = os.environ['FILE_BUCKET'] + self.createS3Client() + + def runProcess(self): + with open('UofM_CSV.json') as f: + UofMData = json.load(f) + + for i in range(0, 12): + metaDict = UofMData['data'][i] + self.processUofMRecord(metaDict) + + self.saveRecords() + self.commitChanges() + + def processUofMRecord(self, record): + try: + UofMRec = UofMMapping(record) + UofMRec.applyMapping() + self.addHasPartMapping(record, UofMRec.record) + self.storePDFManifest(UofMRec.record) + self.addDCDWToUpdateList(UofMRec) + + except (MappingError, HTTPError, ConnectionError, IndexError, TypeError) as e: + logger.exception(e) + logger.warn(UofMError('Unable to process UofM record')) + + def addHasPartMapping(self, resultsRecord, record): + bucket = 'ump-pdf-repository' + + try: + #The get_object method is to make sure the object with a specific bucket and key exists in S3 + self.s3Client.get_object(Bucket=bucket, + Key=f'{resultsRecord["File ID 1"]}_060pct.pdf') + key = f'{resultsRecord["File ID 1"]}_060pct.pdf' + urlPDFObject = f'https://{bucket}.s3.amazonaws.com/{key}' + + linkString = '|'.join([ + '1', + urlPDFObject, + 'UofM', + 'application/pdf', + '{"catalog": false, "download": true, "reader": false, "embed": false}' + ]) + record.has_part.append(linkString) + + except ClientError or Exception or HTTPError as err: + if err.response['Error']['Code'] == 'NoSuchKey': + logger.info(UofMError("Key doesn't exist")) + else: + logger.info(UofMError("Object doesn't exist")) + + if not record.has_part: + try: + #The get_object method is to make sure the object with a specific bucket and key exists in S3 + self.s3Client.get_object(Bucket= 'ump-pdf-repository', + Key= f'{resultsRecord["File ID 1"]}_100pct.pdf') + key = f'{resultsRecord["File ID 1"]}_100pct.pdf' + urlPDFObject = f'https://{bucket}.s3.amazonaws.com/{key}' + + linkString = '|'.join([ + '1', + urlPDFObject, + 'UofM', + 'application/pdf', + '{"catalog": false, "download": true, "reader": false, "embed": false}' + ]) + record.has_part.append(linkString) + + except ClientError or Exception or HTTPError as err: + if err.response['Error']['Code'] == 'NoSuchKey': + logger.info(UofMError("Key doesn't exist")) + else: + logger.info(UofMError("Object doesn't exist")) + + + + def storePDFManifest(self, record): + for link in record.has_part: + itemNo, uri, source, mediaType, flags = link.split('|') + + if mediaType == 'application/pdf': + logger.warn(f'Identifiers: {record.identifiers}') + recordID = record.identifiers[0].split('|')[0] + + manifestPath = 'manifests/{}/{}.json'.format(source, recordID) + manifestURI = 'https://{}.s3.amazonaws.com/{}'.format( + self.s3Bucket, manifestPath + ) + + manifestJSON = self.generateManifest(record, uri, manifestURI) + + self.createManifestInS3(manifestPath, manifestJSON) + + linkString = '|'.join([ + itemNo, + manifestURI, + source, + 'application/webpub+json', + '{"catalog": false, "download": false, "reader": true, "embed": false}' + ]) + + record.has_part.insert(0, linkString) + break + + def createManifestInS3(self, manifestPath, manifestJSON): + self.putObjectInBucket( + manifestJSON.encode('utf-8'), manifestPath, self.s3Bucket + ) + + @staticmethod + def generateManifest(record, sourceURI, manifestURI): + manifest = WebpubManifest(sourceURI, 'application/pdf') + + manifest.addMetadata( + record, + conformsTo=os.environ['WEBPUB_PDF_PROFILE'] + ) + + manifest.addChapter(sourceURI, record.title) + + manifest.links.append({ + 'rel': 'self', + 'href': manifestURI, + 'type': 'application/webpub+json' + }) + + return manifest.toJson() + + +class UofMError(Exception): + pass diff --git a/processes/__init__.py b/processes/__init__.py index 560cd4f319..af609882c2 100644 --- a/processes/__init__.py +++ b/processes/__init__.py @@ -17,3 +17,4 @@ from .chicagoISAC import ChicagoISACProcess from .UofSC import UofSCProcess from .loc import LOCProcess +from .UofM import UofMProcess diff --git a/tests/unit/test_UofM_mapping.py b/tests/unit/test_UofM_mapping.py new file mode 100644 index 0000000000..0053d3bfa5 --- /dev/null +++ b/tests/unit/test_UofM_mapping.py @@ -0,0 +1,49 @@ +import pytest + +from mappings.UofM import UofMMapping + + +class TestUofMMapping: + @pytest.fixture + def testMapping(self): + class TestUofMMapping(UofMMapping): + def __init__(self): + self.mapping = None + + return TestUofMMapping() + + @pytest.fixture + def testRecordStandard(self, mocker): + return mocker.MagicMock( + title='testTitle', + authors=['testAuthor|||true'], + dates=['testDate|publication_date'], + publisher=['testPublisher||'], + identifiers=['testISBN|isbn', 'testOCLC|oclc'], + contributor=['testContributor|||contributor'], + subjects='testSubject' + ) + + def test_createMapping(self, testMapping): + recordMapping = testMapping.createMapping() + + assert list(recordMapping.keys()) == [ + 'title', 'authors', 'dates', 'publisher', + 'identifiers', 'contributors', 'subjects' + ] + assert recordMapping['title'] == ('Title', '{0}') + + def test_applyFormatting_standard(self, testMapping, testRecordStandard): + testMapping.record = testRecordStandard + + testMapping.applyFormatting() + + assert testMapping.record.has_part == [] + assert testMapping.record.source == 'UofM' + assert testMapping.record.identifiers == ['testISBN|isbn', 'testOCLC|oclc'] + assert testMapping.record.source_id == 'UofM_testOCLC' + assert testMapping.record.publisher == ['testPublisher||'] + assert testMapping.record.spatial == 'Michigan' + assert testMapping.record.subjects == ['testSubject||'] + + diff --git a/tests/unit/test_UofM_process.py b/tests/unit/test_UofM_process.py new file mode 100644 index 0000000000..c21d86101c --- /dev/null +++ b/tests/unit/test_UofM_process.py @@ -0,0 +1,106 @@ +import pytest + +from mappings.core import MappingError +from processes.UofM import UofMProcess +from tests.helper import TestHelpers + +class TestUofMProcess: + @classmethod + def setup_class(cls): + TestHelpers.setEnvVars() + + @classmethod + def teardown_class(cls): + TestHelpers.clearEnvVars() + + @pytest.fixture + def testProcess(self, mocker): + class TestUofM(UofMProcess): + def __init__(self): + self.s3Bucket = 'test_aws_bucket' + self.s3Client = mocker.MagicMock(s3Client='testS3Client') + self.session = mocker.MagicMock(session='testSession') + self.records = mocker.MagicMock(record='testRecord') + self.batchSize = mocker.MagicMock(batchSize='testBatchSize') + self.process = 'complete' + + return TestUofM() + + def test_runProcess(self, testProcess, mocker): + runMocks = mocker.patch.multiple( + UofMProcess, + saveRecords=mocker.DEFAULT, + commitChanges=mocker.DEFAULT, + ) + + testProcess.runProcess() + + runMocks['saveRecords'].assert_called_once() + runMocks['commitChanges'].assert_called_once() + + + def test_processUofMRecord_success(self, testProcess, mocker): + processMocks = mocker.patch.multiple(UofMProcess, + addHasPartMapping=mocker.DEFAULT, + storePDFManifest=mocker.DEFAULT, + addDCDWToUpdateList=mocker.DEFAULT + ) + + mockMapping = mocker.MagicMock(record='testRecord') + mockMapper = mocker.patch('processes.UofM.UofMMapping') + mockMapper.return_value = mockMapping + + testProcess.processUofMRecord(mockMapping) + + mockMapping.applyMapping.assert_called_once() + + processMocks['addHasPartMapping'].assert_called_once_with(mockMapping, 'testRecord') + processMocks['storePDFManifest'].assert_called_once_with('testRecord') + processMocks['addDCDWToUpdateList'].assert_called_once_with(mockMapping) + + def test_processUofMRecord_error(self, mocker): + + mockMapper = mocker.patch('processes.UofM.UofMMapping') + mockMapper.side_effect = MappingError('testError') + + assert pytest.raises(MappingError) + + def test_storePDFManifest(self, testProcess, mocker): + mockRecord = mocker.MagicMock(identifiers=['1|UofM']) + mockRecord.has_part = [ + '1|testURI|UofM|application/pdf|{}', + ] + + mockGenerateMan = mocker.patch.object(UofMProcess, 'generateManifest') + mockGenerateMan.return_value = 'testJSON' + mockCreateMan = mocker.patch.object(UofMProcess, 'createManifestInS3') + + testProcess.storePDFManifest(mockRecord) + + testManifestURI = 'https://test_aws_bucket.s3.amazonaws.com/manifests/UofM/1.json' + assert mockRecord.has_part[0] == '1|{}|UofM|application/webpub+json|{{"catalog": false, "download": false, "reader": true, "embed": false}}'.format(testManifestURI) + + mockGenerateMan.assert_called_once_with(mockRecord, 'testURI', testManifestURI) + mockCreateMan.assert_called_once_with('manifests/UofM/1.json', 'testJSON') + + def test_createManifestInS3(self, testProcess, mocker): + mockPut = mocker.patch.object(UofMProcess, 'putObjectInBucket') + + testProcess.createManifestInS3('testPath', '{"data": "testJSON"}') + + mockPut.assert_called_once_with(b'{"data": "testJSON"}', 'testPath', 'test_aws_bucket') + + def test_generateManifest(self, mocker): + mockManifest = mocker.MagicMock(links=[]) + mockManifest.toJson.return_value = 'testJSON' + mockManifestConstructor = mocker.patch('processes.UofM.WebpubManifest') + mockManifestConstructor.return_value = mockManifest + + mockRecord = mocker.MagicMock(title='testTitle') + testManifest = UofMProcess.generateManifest(mockRecord, 'sourceURI', 'manifestURI') + + assert testManifest == 'testJSON' + assert mockManifest.links[0] == {'rel': 'self', 'href': 'manifestURI', 'type': 'application/webpub+json'} + + mockManifest.addMetadata.assert_called_once_with(mockRecord, conformsTo='test_profile_uri') + mockManifest.addChapter.assert_called_once_with('sourceURI', 'testTitle') \ No newline at end of file From 283a8dee496ec141e6ac7347395a6a85250e1af7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 31 Jan 2024 16:09:09 -0500 Subject: [PATCH 3/4] Made new directory for ingest json files --- .gitignore | 3 +- CHANGELOG.md | 1 + chicagoISAC_metadata.json | 8149 ------------------------------------- processes/UofM.py | 4 +- processes/chicagoISAC.py | 2 +- 5 files changed, 5 insertions(+), 8154 deletions(-) delete mode 100644 chicagoISAC_metadata.json diff --git a/.gitignore b/.gitignore index 91f2965d7e..cb34034d38 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,4 @@ tags # Vim *.swp # Ingest JSON files -UofM_CSV.json -chicagoISAC_metadata.json +/ingestJSONFiles diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e116e1d6f..d5553a2de0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - New APIUtils method to generate a presigned url for S3 actions - New /fulfill endpoint with ability to check for NYPL login in Bearer authorization header - Added new University of Michigan process and mapping for ingestion +- New directory for JSON files that will be ingested ## Fixed - NYPL records not being added due to SQLAlchemy error - Bardo CCE API and Hathi DataFiles URL updated diff --git a/chicagoISAC_metadata.json b/chicagoISAC_metadata.json deleted file mode 100644 index ba6a67baf4..0000000000 --- a/chicagoISAC_metadata.json +++ /dev/null @@ -1,8149 +0,0 @@ -[ - { - "title": "Studies Presented to Robert D. Biggs, June 4, 2004 From the Workshop of the Chicago Assyrian Dictionary, Volume 2", - "authors": [ - "Martha T. Roth", - "Walter Farber", - "Matthew W. Stolper,Paula von Bechtolsheim," - ], - "series": "Assyriological Studies 27", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2007", - "isbn": "9781885923448", - "extent": "Pp. liv + 362; 40 illustrations, 9 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as27.pdf" - ] - }, - { - "title": "Perspectives on Hittite Civilization: Selected Writings of Hans G. Güterbock.", - "authors": [ - "H. A. Hoffner", - "Jr.," - ], - "series": "Assyriological Studies 26", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1997", - "isbn": "9781885923042", - "extent": "Pp. xi + 274; 49 illustrations, 3 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as26.pdf" - ] - }, - { - "title": "The Hittite State Cult of the Tutelary Deities.", - "authors": [ - "G. McMahon." - ], - "series": "Assyriological Studies 25", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "0918986699", - "extent": "Pp. xxi + 302; no illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as25.pdf" - ] - }, - { - "title": "The Hittite Instruction for the Royal Bodyguard.", - "authors": [ - "Hans G. GüterbockTheo P. J. van den Hout." - ], - "series": "Assyriological Studies 24", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "", - "extent": "Pp. xvi + 99", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as24.pdf" - ] - }, - { - "title": "Kanissuwar - A Tribute to Hans G. Güterbock on His Seventy-Fifth Birthday, May 27, 1983.", - "authors": [ - "H. A. Hoffner", - "Jr.G. M. Beckman," - ], - "series": "Assyriological Studies 23", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1986", - "isbn": "0918986443", - "extent": "Pp. vii + 203; 39 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as23.pdf" - ] - }, - { - "title": "Old Babylonian Letters from Tell Asmar.", - "authors": [ - "R. M. Whiting", - "Jr." - ], - "series": "Assyriological Studies 22", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1987", - "isbn": "0918986478", - "extent": "Pp. xiii + 177; 27 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as22.pdf" - ] - }, - { - "title": "Computer-aided Analysis of Amorite.", - "authors": [ - "Ignace J. Gelb", - "with the assistance of J. Bartls", - "S.–M. Vance,R. M. Whiting." - ], - "series": "Assyriological Studies 21", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1980", - "isbn": "", - "extent": "Pp. xv + 657", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as21.pdf" - ] - }, - { - "title": "Sumerological Studies in Honor of Thorkild Jacobsen on His Seventieth Birthday June 7, 1974.", - "authors": [ - "S. J. Lieberman," - ], - "series": "Assyriological Studies 20", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1976", - "isbn": "9780226622828", - "extent": "Pp. xiv + 316; no illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as20.pdf" - ] - }, - { - "title": "The Akkadian Influences on Aramaic.", - "authors": [ - "Stephen Kaufman." - ], - "series": "Assyriological Studies 19", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1974", - "isbn": "", - "extent": "Pp. xiii + 196", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as19.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as19_errata.pdf" - ] - }, - { - "title": "Sequential Reconstruction of Proto-Akkadian.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Assyriological Studies 18", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1969", - "isbn": "", - "extent": "Pp. xxxii + 244", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as18.pdf" - ] - }, - { - "title": "Cuneiform Texts from Nippur: The Eighth and Ninth Seasons.", - "authors": [ - "Giorgio BuccellatiRobert D. Biggs." - ], - "series": "Assyriological Studies 17", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1969", - "isbn": "", - "extent": "Pp. ix + 16; 58 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as17.pdf" - ] - }, - { - "title": "Studies in Honor of Benno Landsberger on His Seventy-Fifth Birthday, April 21, 1963.", - "authors": [ - "Hans G. GüterbockThorkild Jacobsen," - ], - "series": "Assyriological Studies 16", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1965", - "isbn": "", - "extent": "Pp. viii + 448; frontispiece (Benno Landsberger); 29 pages with illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as16.pdf" - ] - }, - { - "title": "The Second Dynasty of Isin According to A New King-List Tablet.", - "authors": [ - "Arno Poebel." - ], - "series": "Assyriological Studies 15", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1955", - "isbn": "", - "extent": "Pp. viii + 41; 2 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as15.pdf" - ] - }, - { - "title": "Miscellaneous Studies.", - "authors": [ - "Arno Poebel." - ], - "series": "Assyriological Studies 14", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1947", - "isbn": "", - "extent": "Pp. viii + 122; 1 illustration", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as14.pdf" - ] - }, - { - "title": "The System of The Quadriliteral Verb in Akkadian.", - "authors": [ - "Alexander Heidel." - ], - "series": "Assyriological Studies 13", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xvii + 141", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as13.pdf" - ] - }, - { - "title": "Lamentation Over the Destruction of Ur.", - "authors": [ - "Samuel N. Kramer." - ], - "series": "Assyriological Studies 12", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xii + 97; 4 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as12.pdf" - ] - }, - { - "title": "The Sumerian King List.", - "authors": [ - "Thorkild Jacobsen." - ], - "series": "Assyriological Studies 11", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chricago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xvi + 216; 1 plate, 2 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as11.pdf" - ] - }, - { - "title": "Gilgamesh and the Ḫuluppu-Tree: A Reconstructed Sumerian Text.", - "authors": [ - "Samuel N. Kramer." - ], - "series": "Assyriological Studies 10", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. x + 64", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as10.pdf" - ] - }, - { - "title": "Studies in Akkadian Grammar.", - "authors": [ - "Arno Poebel." - ], - "series": "Assyriological Studies 9", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xxv + 196", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as9.pdf" - ] - }, - { - "title": "The Sumerian Prefix Forms BE- and BI- in the Time of the Earlier Princes of Lagaš.", - "authors": [ - "Samuel N. Kramer." - ], - "series": "Assyriological Studies 8", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. x + 29", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as8.pdf" - ] - }, - { - "title": "The Chicago Syllabary and the Louvre Syllabary AO 7661.", - "authors": [ - "Richard T. Hallock." - ], - "series": "Assyriological Studies 7", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xiv + 79; 10 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as7.pdf" - ] - }, - { - "title": "Philological Notes on Eshnunna and Its Inscriptions.", - "authors": [ - "Thorkild Jacobsen." - ], - "series": "Assyriological Studies 6", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. xiv + 35; 3 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as6.pdf" - ] - }, - { - "title": "Historical Prism Inscriptions of Ashurbanipal I: Editions E, B1-5, D, and K", - "authors": [ - "Arthur Carl Piepkorn." - ], - "series": "Assyriological Studies 5", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chricago Press" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "Pp. xiii +109", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as5.pdf" - ] - }, - { - "title": "Beitrage zum Assyrischen Wörterbuch II.", - "authors": [ - "Bruno Meissner." - ], - "series": "Assyriological Studies 4", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. vii + 112", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as4.pdf" - ] - }, - { - "title": "Das appositionell bestimmte Pronomen der 1. Pers. sing. in den westsemitischen Inschriften und im Alten Testament.", - "authors": [ - "Arnold Poebel." - ], - "series": "Assyriological Studies 3", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. viii + 86", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as3.pdf" - ] - }, - { - "title": "The Sumerian Prefix Forms E - and I - in the Time of the Earlier Princes of Lagaš.", - "authors": [ - "Arno Poebel." - ], - "series": "Assyriological Studies 2", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. xi + 47", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as2.pdf" - ] - }, - { - "title": "Beitrage zum Assyrischen Wörterbuch I.", - "authors": [ - "Bruno Meissner." - ], - "series": "Assyriological Studies 1", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. 92", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as1.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 1, A, part 1", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1964", - "isbn": "9780918986061", - "extent": "xxxvi + 392", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_a1.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 1, A, part 2", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1968", - "isbn": "9780918986078", - "extent": "xx + 531", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_a2.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 2, B", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1965", - "isbn": "9780918986085", - "extent": "xviii + 366", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_b.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 3, D", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1959", - "isbn": "9780918986092", - "extent": "xiv + 203", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_d.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 4, E", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1958", - "isbn": "9780918986108", - "extent": "xiv + 435", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_e.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 5, G", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1956", - "isbn": "9780918986115", - "extent": "xii + 158", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_g.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 6, H [Het]", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1956", - "isbn": "9780918986122", - "extent": "xiii + 266", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_h.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 7, I/J", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1960", - "isbn": "9780918986139", - "extent": "xv + 331", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_i-j.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 8, K", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1971", - "isbn": "9780918986146", - "extent": "xix + 617", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_k.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 9, L", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1973", - "isbn": "9780918986153", - "extent": "xx + 259", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_l.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 10, M, part 1", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1977", - "isbn": "9780918986160", - "extent": "xxiv + 441", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_m1.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 10, M, part 2", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1977", - "isbn": "9780918986160", - "extent": "xx + 324", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_m2.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 11, N, part 1", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1980", - "isbn": "9780918986177", - "extent": "xxiii + 382", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_n1.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 11, N, part 2", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1980", - "isbn": "9780918986177", - "extent": "xxi + 357", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_n2.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 12, P", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2005", - "isbn": "9781885923356", - "extent": "xxx + 559", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_p.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 13, Q", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1982", - "isbn": "9780918986245", - "extent": "xxiv + 332", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_q.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 14, R", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1999", - "isbn": "9781885923141", - "extent": "xxx + 441", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_r.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 15, S", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1984", - "isbn": "9780918986320", - "extent": "xxiv + 428", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 16, S [Tsade]", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1962", - "isbn": "9780918986184", - "extent": "xv + 262", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_tsade.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 17, S [Shin], part 1", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1989", - "isbn": "9780918986559", - "extent": "xxviii + 492", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_shin_1.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 17, S [Shin], part 2", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1992", - "isbn": "9780918986788", - "extent": "xxviii + 453", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_shin_2.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 17, S [Shin], part 3", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1992", - "isbn": "9780918986795", - "extent": "xxxiv + 420", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_shin_3.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 18, T", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2006", - "isbn": "9781885923424", - "extent": "xxx + 500", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_t.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 19, T [Tet]", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2006", - "isbn": "9781885923431", - "extent": "xxxii + 167", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_tet.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 20, U/W", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2010", - "isbn": "9781885923783", - "extent": "xxxi + 411", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_u_w.pdf" - ] - }, - { - "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", - "authors": [ - "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" - ], - "series": "Volume 21, Z", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1961", - "isbn": "9780918986191", - "extent": "xv + 170", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_z.pdf" - ] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "A–K (nyp)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "", - "isbn": "", - "extent": "-", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "L–N, fascicle 1(la- to ma-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1980", - "isbn": "9780918986276", - "extent": "xxxii + 96 (1–96)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "L–N, fascicle 2(-ma to miyahuwant-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1983", - "isbn": "9780918986382", - "extent": "128 (97–224)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "L–N, fascicle 3(miyahuwant- to nai-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1986", - "isbn": "9780918986481", - "extent": "128 (225–352)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "L–N, fascicle 4(nai- to nutarnu-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1989", - "isbn": "9780918986580", - "extent": "xxx + 124 (353–477)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, Theo P. J. van den Hout" - ], - "series": "L–N, fascicles 1–4 (hb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1989", - "isbn": "0918986583", - "extent": "xxx + 477 (1–477)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chd_l-n.pdf" - ] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "P, fascicle 1(pa- to para) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1994", - "isbn": "9780918986955", - "extent": "xi + 112 (1–112)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "P, fascicle 2(para- to pattar) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1995", - "isbn": "9781885923004", - "extent": "128 (113–240)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "P, fascicle 3(pattar to putkiya-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1997", - "isbn": "9781885923066", - "extent": "xxxii + 163 (241–403)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, Theo P. J. van den Hout" - ], - "series": "P, fascicles 1–3 (hb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1997", - "isbn": "9781885923080", - "extent": "xxxii + 403 (1–403)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/CHDP.pdf" - ] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "S, fascicle 1(sa- to saptamenzu) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2002", - "isbn": "9781885923202", - "extent": "viii + 208 (1–208)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "S, fascicle 2(saptamenzu to si) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2005", - "isbn": "9781885923370", - "extent": "124 (209–332)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "S, fascicle 3(se- to sizisalla-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2013", - "isbn": "9781885923950", - "extent": "176 (333–508)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" - ], - "series": "S, fascicle 4 (-šma/i- A. to šūu-) (pb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2019", - "isbn": "9781614910473", - "extent": "xliii + 200 (509–661)", - "url": [] - }, - { - "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", - "authors": [ - "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, Theo P. J. van den Hout" - ], - "series": "S, fascicles 1–4 (sa- to šūu-) (hb)", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "2019", - "isbn": "9781614910503", - "extent": "xliii + 661 (1–661)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chds.pdf" - ] - }, - { - "title": "Unpublished Bo-Fragments in Transliteration II (Bo 6151–Bo 9535)", - "authors": [ - ". Oğuz Soysal and Başak Yıldız Gülşen." - ], - "series": "Chicago Hittite Dictionary Supplements 3", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2019", - "isbn": "9781614910442", - "extent": "Pp. xvi + 306; 316 illustrations (most color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/CHDS/chds3.pdf" - ] - }, - { - "title": "Unpublished Bo-Fragments in Transliteration I (Bo 9536–Bo 9736)", - "authors": [ - ". Oğuz Soysal." - ], - "series": "Chicago Hittite Dictionary Supplements 2", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2015", - "isbn": "9781614910282", - "extent": "Pp. xvi + 224; 234 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chds2.pdf" - ] - }, - { - "title": "Ankara Arkeoloji Müzesinde bulanan Bogazköy Tabletleri II - Bogazköy Tablets in the Archaeological Museum of Ankara II.", - "authors": [ - "Rukiye AkdoganOğuz Soysal." - ], - "series": "Chicago Hittite Dictionary Supplements 1", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2011", - "isbn": "9781885923813", - "extent": "Pp. xii + 50; 64 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chds1.pdf" - ] - }, - { - "title": "ISACS 14. Seen Not Heard: Composition, Iconicity, and the Classifier Systems of Logosyllabic Scripts", - "authors": [ - ". Ilona Zsolnay," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "Institute for the Study of Ancient Cultures" - ], - "publicationDate": "2023", - "isbn": "9781614910855", - "extent": "Pp. xxii+ 328; 99 figures, 11tables", - "url": [] - }, - { - "title": "Purchase", - "authors": [ - "" - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "Institute for the Study of Ancient Cultures" - ], - "publicationDate": "2023", - "isbn": "9781614910855", - "extent": "Pp. xxii+ 328; 99 figures, 11tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIS/isacs14.pdf" - ] - }, - { - "title": "Irrigation in Early States: New Directions", - "authors": [ - ". Stephanie Rost," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2022", - "isbn": "9781614910718", - "extent": "Pp. xxx+ 452; 99 figures, 45 tables, 4 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIS/ois13.pdf" - ] - }, - { - "title": "Structures of Power: Law and Gender Across the Ancient Near East and Beyond", - "authors": [ - ". Ilan Peled," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2018", - "isbn": "9781614910398", - "extent": "Pp. vii + 220; 15 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIS/ois12.pdf" - ] - }, - { - "title": "The Late Third Millennium in the Ancient Near East: Chronology, C14, and Climate Change", - "authors": [ - ". Felix Höflmayer," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2017", - "isbn": "9781614910367", - "extent": "Pp. xii + 516; 176 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois11.pdf" - ] - }, - { - "title": "Household Studies in Complex Societies: (Micro) Archaeological and Textual Approaches.", - "authors": [ - "Miriam Müller," - ], - "series": "Oriental Institute Seminars 10", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2015", - "isbn": "9781614910237", - "extent": "Pp. xlii + 470; 208 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois10.pdf" - ] - }, - { - "title": "Heaven on Earth: Temples, Ritual, and Cosmic Symbolism in the Ancient World.", - "authors": [ - "Deena Ragavan," - ], - "series": "Oriental Institute Seminars 9", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2013", - "isbn": "9781885923967", - "extent": "Pp. viii+463; 174 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois9.pdf" - ] - }, - { - "title": "Iconoclasm and Text Destruction in the Ancient Near East and Beyond.", - "authors": [ - "Natalie Naomi May," - ], - "series": "Oriental Institute Seminars 8", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2012", - "isbn": "9781885923905", - "extent": "Pp. xvi + 528; 152 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois8.pdf" - ] - }, - { - "title": "Slaves and Households in the Near East.", - "authors": [ - "Laura Culbertson," - ], - "series": "Oriental Institute Seminars 7", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2011", - "isbn": "9781885923837", - "extent": "Pp. viii + 152; 1 figure, 3 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois7.pdf" - ] - }, - { - "title": "Divination and Interpretation of Signs in the Ancient World.", - "authors": [ - "Amar Annus," - ], - "series": "Oriental Institute Seminars 6", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2010", - "isbn": "9781885923684", - "extent": "Pp. viii + 352; 10 figures, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois6.pdf" - ] - }, - { - "title": "Nomads, Tribes, and the State in the Ancient Near East: Cross-disciplinary Perspective.", - "authors": [ - "Jeffrey Szuchman," - ], - "series": "Oriental Institute Seminars 5", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2009", - "isbn": "9781885923615", - "extent": "Pp. xvi + 288; 70 figures, 7 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois5.pdf" - ] - }, - { - "title": "Religion and Power: Divine Kingship in the Ancient World and Beyond", - "authors": [ - "Nicole Brisch", - " Second printing with minor corrections," - ], - "series": "Oriental Institute Seminars 4", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2008", - "isbn": "9781885923554, 1885923554", - "extent": "Pp. xiii + 271; 50 figures, 7 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois4.pdf" - ] - }, - { - "title": "Performing Death: Social Analyses of Funerary Traditions in the Ancient Near East and Mediterranean", - "authors": [ - "Nicola Laneri," - ], - "series": "Oriental Institute Seminars 3", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2007", - "isbn": "1885923503", - "extent": "Pp. xviii + 318; 86 figures; 5 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois3.pdf" - ] - }, - { - "title": "Margins of Writing, Origins of Cultures. (second printing)", - "authors": [ - "Seth L. Sanders," - ], - "series": "Oriental Institute Seminars 2", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "1885923392", - "extent": "Pp. x + 306; 9 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIS2.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois2_2007.pdf" - ] - }, - { - "title": "Changing Social Identity with the Spread of Islam: Archaeological Perspectives.", - "authors": [ - "Donald Whitcomb," - ], - "series": "Oriental Institute Seminars 1", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2004", - "isbn": "1885923341", - "extent": "Pp, x + 102 + 46 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIS1.pdf" - ] - }, - { - "title": "Scripts and Scripture: Writing and Religion in Arabia circa 500–700 CE.", - "authors": [ - "Fred M. DonnerRebecca Hasselbach-Andee", - "", - "with contributions by Ahmad Al-Jallad", - "François Déroche", - "Fred M. Donner", - "Suleyman Dost", - "Adam Flowers", - "Sidney Griffith", - "Robert G. Hoyland", - "Ilkka Lindstedt", - "Kyle Longworth", - "Michael C. A. Macdonald", - "Laïla Nehmé", - "Gordon Newby,Hamza M. Zafer." - ], - "series": "Late Antique and Medieval Islamic Near East 3", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2022", - "isbn": "9781614910732", - "extent": "Pp. xxii + 287; 55 figures, 10 tables, 2 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/LAMINE/lamine3.pdf" - ] - }, - { - "title": "The Damascus Psalm Fragment: Middle Arabicand the Legacy of Old Higāzī.", - "authors": [ - "Ahmad Al-Jallad", - "with a contribution by Ronny Vollandt." - ], - "series": "Late Antique and Medieval Islamic Near East 2", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2020", - "isbn": "9781614910527", - "extent": "160 pages (xxiv + 136); 31figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/LAMINE/Lamine2.pdf" - ] - }, - { - "title": "Christians and Others in the Umayyad State.", - "authors": [ - "Antoine BorrutFred M. Donner", - "", - "with contributions by Touraj Daryaee", - "Muriel Debié", - "Sidney H. Griffith", - "Wadad al-Qadi", - "Milka Levy-Rubin", - "Suzanne Pinckney Stetkevych", - "Donald Whitcomb,Luke Yarbrough." - ], - "series": "Late Antique and Medieval Islamic Near East 1", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2016", - "isbn": "9781614910312", - "extent": "Pp. x + 214; 18 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lamine1.pdf" - ] - }, - { - "title": "Sargonic Texts in the Ashmolean Museum, Oxford.", - "authors": [ - "I. J. Gelb." - ], - "series": "Materials for the Assyrian Dictionary 5", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1970", - "isbn": "9780226623092", - "extent": "Pp. xxx + 150; 46 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad5.pdf" - ] - }, - { - "title": "Sargonic Texts in the Louvre Museum.", - "authors": [ - "I. J. Gelb." - ], - "series": "Materials for the Assyrian Dictionary 4", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1970", - "isbn": "9780226623085", - "extent": "Pp. xxiv + 143; 25 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad4.pdf" - ] - }, - { - "title": "Glossary of Old Akkadian.", - "authors": [ - "I. J. Gelb." - ], - "series": "Materials for the Assyrian Dictionary 3", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "", - "extent": "Pp. xxiv + 318", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad3.pdf" - ] - }, - { - "title": "Old Akkadian Writing and Grammar", - "authors": [ - "I. J. Gelb." - ], - "series": "Materials for the Assyrian Dictionary 2", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1952", - "isbn": "", - "extent": "Pp. x + 235", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad2.pdf" - ] - }, - { - "title": "Sargonic Texts from the Diyala Region", - "authors": [ - "I. J. Gelb." - ], - "series": "Materials for the Assyrian Dictionary 1", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1952", - "isbn": "", - "extent": "Pp. xviii + 251", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad1.pdf" - ] - }, - { - "title": "MSKH 1. A Catalogue of Cuneiform Sources Pertaining to Specific Monarchs of the Kassite Dynasty.", - "authors": [ - "J. A. Brinkman." - ], - "series": "Materials and Studies for Kassite History 1", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1977", - "isbn": "9780918986009", - "extent": "Pp. xxiv + 469; 11 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mskh1.pdf" - ] - }, - { - "title": "The Second Cataract Fortress of Dorginarti.", - "authors": [ - "Lisa A. Heidorn." - ], - "series": "Nubian Expedition 12", - "publisherLocation": "Chicago", - "publisher": [ - "Chicago: Institute for the Study of Ancient Cultures" - ], - "publicationDate": "2023", - "isbn": "9781614910831", - "extent": "Pp. lii + 496;184 figures, 7 tables, 3 maps, 10 plans, 107 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ne12.pdf" - ] - }, - { - "title": "Beads from Excavations at Qustul, Adindan, Serra East, Dorginarti, Ballana, and Kalabsha, Part 1: A-Group, Post-A-Group, C-Group, N-Type, P-Type, Pan Grave, Kerma, Middle Kingdom, and New Kingdom.", - "authors": [ - "Joanna Then-Obłuska." - ], - "series": "Oriental Institute Nubian Expedition 11", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2022", - "isbn": "9781614910770", - "extent": "Pp. xxvii + 361 (manyin color); 20 figures, 14 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine11.pdf" - ] - }, - { - "title": "Excavations at Serra East, Parts 1-5: A-Group, C-Group, Pan Grave, New Kingdom, and X-Group Remains from Cemeteries A-G and Rock Shelters.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 10", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1993", - "isbn": "9780918986924", - "extent": "Pp. xxxii + 281; 148 figures, 43 plates, 55 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine10.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 9: Noubadian X-Group Remains from Royal Complexes in Cemeteries Q and 219 and Private Cemeteries Q, R, V, W, B, J, and M at Qustul and Ballana.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 9", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "9780918986740", - "extent": "Pp. xxxix + 501; 195 figures, 83 plates, 54 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine9.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 8: Meroitic Remains from Qustul Cemetery Q, Ballana Cemetery B, and a Ballana Settlement. Two volumes (Text, Plates).", - "authors": [ - "B. B. Williams", - "et. al." - ], - "series": "Nubian Expedition 8", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "9780918986719", - "extent": "Text vol.: Pp. xlvii + 458", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine8pt1.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine8pt2.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 7: Twenty-Fifth Dynasty and Napatan Remains at Qustul Cemeteries W and V.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 7", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "9780918986603", - "extent": "Pp. xxvii + 83;33 figures, 15 plates, 16 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine7.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 6: New Kingdom Remains from Cemeteries R, V, S, and W at Qustul and Cemetery K at Adindan.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 6", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1992", - "isbn": "9780918986863", - "extent": "Pp. xxxv + 479; 206 figures, 53 plates, 24 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine6.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 5: C-Group, Pan Grave, and Kerma Remains at Adindan Cemeteries T, K, U, and J.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 5", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute:" - ], - "publicationDate": "1983", - "isbn": "9780918986337", - "extent": "Pp. xxvi + 235; 48 figures, 131 plates, 50 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine5.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Parts 2, 3, and 4: Neolithic, A-Group, and Post A-Group Remains from Cemeteries W, V, S, Q, T, and a Cave East of Cemetery K.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 4", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1989", - "isbn": "9780918986542", - "extent": "Pp. xxvii + 388; 72 figures, 55 plates, 26 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine4.pdf" - ] - }, - { - "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 1: The A-Group Royal Cemetery at Qustul, Cemetery L.", - "authors": [ - "B. B. Williams." - ], - "series": "Nubian Expedition 3", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1986", - "isbn": "9780918986467", - "extent": "Pp. xxxviii + 388, 190 figures, 100 plates, 43 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine3.pdf" - ] - }, - { - "title": "Ausgrabungen von Khor-Dehmit bis Bet El-Wali.", - "authors": [ - "H. Ricke." - ], - "series": "Nubian Expedition 2", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1967", - "isbn": "9780226623665", - "extent": "Pp. xvii + 70; 81 figures, 3 plans, 30 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine2.pdf" - ] - }, - { - "title": "The Beit el-Wali Temple of Ramesses II.", - "authors": [ - "Herbert Ricke", - "George R. Hughes,Edward F. Wente." - ], - "series": "Nubian Expedition 1", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1967", - "isbn": "", - "extent": "Pp. xvii + 39; 6 figures, 49 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine1.pdf" - ] - }, - { - "title": "Barda Balka.", - "authors": [ - "Bruce Howe", - "with foreword by Yorke M. Rowan." - ], - "series": "Oriental Institute Communications 31", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2014", - "isbn": "9781614910008", - "extent": "Pp. xvi + 32; 3 figures, 22 plates, 3 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic31.pdf" - ] - }, - { - "title": "Bir Umm Fawakhir, Volume 2: Report on the 1996–1997 Survey Seasons.", - "authors": [ - "Carol Meyer", - "with contributions by Lisa Heidorn", - "Alexandra A. O'Brien,Clemens Reichel." - ], - "series": "Oriental Institute Communications 30", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2011", - "isbn": "9781885923714", - "extent": "Pp. xxviii + 220; 53 figures, 108 plates, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic30.pdf" - ] - }, - { - "title": "Catalog of Demotic Texts in the Brooklyn Museum.", - "authors": [ - "George R. Hughes." - ], - "series": "Oriental Institute Communications 29", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2005", - "isbn": "9781885923271", - "extent": "Pp. xix + 115; 48 plates (8 color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic29.pdf" - ] - }, - { - "title": "Bir Umm Fawakhir Survey Project 1993: A Byzantine Gold-Mining Town in Egypt.", - "authors": [ - "C. Meyer", - "L. A. Heidorn", - "W. E. Kaegi,T. Wilfong." - ], - "series": "Oriental Institute Communications 28", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2000", - "isbn": "9781885923165", - "extent": "Pp. xviii + 92; 59 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic28.pdf" - ] - }, - { - "title": "The Registry of the Photographic Archives of the Epigraphic Survey, with Plates from Key Plans Showing Locations of Theban Temple Decorations.", - "authors": [ - "The Epigraphic Survey (H. H. Nelson)." - ], - "series": "Oriental Institute Communications 27", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1995", - "isbn": "9780918986986", - "extent": "Pp. xviii + 270; 38 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic27.pdf" - ] - }, - { - "title": "Publications of the Oriental Institute, 1906–2014: Exploring the History and Civilizations of the Near East.", - "authors": [ - "Thomas G. UrbanLeslie Schramer," - ], - "series": "Oriental Institute Communications 26", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2014", - "isbn": "9781614910077", - "extent": "28 pages", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic26.pdf" - ] - }, - { - "title": "Figurines and Other Clay Objects from Sarab and Cayönü.", - "authors": [ - "V. B. Morales." - ], - "series": "Oriental Institute Communications 25", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "9780918986597", - "extent": "Pp. xvi + 92; 2 catalogs, 30 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic25.pdf" - ] - }, - { - "title": "The American Expedition to Idalion, Cyprus 1973–1980.", - "authors": [ - "L. E. StagerA. M. Walker," - ], - "series": "Oriental Institute Communications 24", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1989", - "isbn": "9780918986528", - "extent": "Pp. xxiv + 516; 93 figures, 82 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic24.pdf" - ] - }, - { - "title": "Excavations at Nippur: Twelfth Season.", - "authors": [ - "McGuire Gibson", - "Judith A. Franke", - "Miguel Civil", - "Michael L. Bates", - "Joachim Boessneck", - "Karl W. ButzerTed A. Rathbun,Elizabeth Frick Mallin." - ], - "series": "Oriental Institute Communications 23", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1978", - "isbn": "9780918986221", - "extent": "Pp. xiv + 190; 92 figures, 16 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic23.pdf" - ] - }, - { - "title": "Excavations at Nippur: Eleventh Season.", - "authors": [ - "McG. Gibson", - "with appendices by M. Civil", - "J. H. Johnson,S. A. Kaufman." - ], - "series": "Oriental Institute Communications 22", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1976", - "isbn": "9780226623399", - "extent": "Pp. ix + 152; 18 figures, 3 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic22.pdf" - ] - }, - { - "title": "The Treasury of Persepolis and Other Discoveries in the Homeland of the Achaemenians", - "authors": [ - "Erich F. Schmidt." - ], - "series": "Oriental Institute Communications 21", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xxi + 139; frontispiece; 97 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic21.pdf" - ] - }, - { - "title": "Progress of the Work of the Oriental Institute in Iraq, 1934/35: Fifth Preliminary Report of the Iraq Expedition.", - "authors": [ - "Henri Frankfort." - ], - "series": "Oriental Institute Communications 20", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xi + 108; frontispiece; 85 figures; 8 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic20.pdf" - ] - }, - { - "title": "Oriental Institute Discoveries in Iraq, 1933/34: Fourth Preliminary Report of the Iraq Expedition.", - "authors": [ - "Henri Frankfort", - "with a chapter by Thorkild Jacobsen." - ], - "series": "Oriental Institute Communications 19", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xi + 103; frontispiece; 107 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic19.pdf" - ] - }, - { - "title": "Work in Western Thebes, 1931–33.", - "authors": [ - "Harold H. NelsonUvo Hölscher", - "with a chapter by Siegfried Schott." - ], - "series": "Oriental Institute Communications 18", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic18.pdf" - ] - }, - { - "title": "Iraq Excavations of the Oriental Institute 1932/33: Third Preliminary Report of the Iraq Expedition.", - "authors": [ - "Henri Frankfort." - ], - "series": "Oriental Institute Communications 17", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. ix +92; frontispiece, 83 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic17.pdf" - ] - }, - { - "title": "Tell Asmar, Khafaje and Khorsabad: Second Preliminary Report of the Iraq Expedition.", - "authors": [ - "Henri Frankfort." - ], - "series": "Oriental Institute Communications 16", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "Pp. ix + 102; 66 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic16.pdf" - ] - }, - { - "title": "Excavations at Ancient Thebes, 1930/31", - "authors": [ - ". Uvo Hölscher." - ], - "series": "Oriental Institute Communications 15", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. vii + 65; 41 figures, 4 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic15.pdf" - ] - }, - { - "title": "Discoveries in Anatolia, 1930–31.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Communications 14", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "Pp. xi + 149; 134 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic14.pdf" - ] - }, - { - "title": "Tell Asmar and Khafaje: The First Season’s Work in Eshnunna 1930/31.", - "authors": [ - "Henri Frankfort", - "Thorkild Jacobsen,Conrad Preusser." - ], - "series": "Oriental Institute Communications 13", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. ix + 112; 54 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic13.pdf" - ] - }, - { - "title": "The Alphabet: Its Rise and Development from the Sinai Inscriptions.", - "authors": [ - "Martin Sprengling." - ], - "series": "Oriental Institute Communications 12", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. xi +71; 5 figures, 3 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic12.pdf" - ] - }, - { - "title": "Anatolia Through the Ages: Discoveries at the Alishar Mound 1927–29.", - "authors": [ - "Erich F. Schmidt." - ], - "series": "Oriental Institute Communications 11", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. x + 165; 213 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic11.pdf" - ] - }, - { - "title": "Medinet Habu Reports – Third Preliminary Report.", - "authors": [ - "Part The Epigraphic Survey", - "– By Harold H. Nelson Part The Architectural Survey", - "/ Uvo Hölscher" - ], - "series": "Oriental Institute Communications 10", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. vii + 69; 42 figures, 4 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic10.pdf" - ] - }, - { - "title": "New Light from Armageddon: Second Provisional Report (1927–29) on the Excavations at Megiddo in Palestine.", - "authors": [ - "P. L. O. Guy." - ], - "series": "Oriental Institute Communications 9", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. x + 68; 61 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic9.pdf" - ] - }, - { - "title": "Explorations in Hittite Asia Minor, 1929.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Communications 8", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "", - "extent": "Pp. vii + 196; 163 figures, 9 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic8.pdf" - ] - }, - { - "title": "Medinet Habu 1928–29.", - "authors": [ - "Part : The Architectural Survey. Uvo Hölscher. Part : The Language of the Historical Texts Commemorating Ramses III. John A. Wilson" - ], - "series": "Oriental Institute Communications 7", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "", - "extent": "Pp. ix + 33; 18 figures, 3 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic7.pdf" - ] - }, - { - "title": "Explorations in Hittite Asia Minor 1927–28.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Communications 6", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "", - "extent": "Pp. vii + 153; 160 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic6.pdf" - ] - }, - { - "title": "Medinet Habu 1924–28.", - "authors": [ - "Part : The Epigraphic Survey of the Great Temple of Medinet Habu (Seasons – to –). Harold H. Nelson. Part : The Architectural Survey of the Great TemplePalace of Medinet Habu (Season –). By Uvo Hölscher." - ], - "series": "Oriental Institute Communications 5", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "", - "extent": "Pp. vi + 50; 35 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic5.pdf" - ] - }, - { - "title": "The Excavation of Armageddon.", - "authors": [ - "Clarence S. Fisher." - ], - "series": "Oriental Institute Communications 4", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "", - "extent": "Pp. xv + 78; 53 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic4.pdf" - ] - }, - { - "title": "First Report of the Prehistoric Survey Expedition.", - "authors": [ - "K. S. SandfordW. J. Arkell." - ], - "series": "Oriental Institute Communications 3", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1928", - "isbn": "", - "extent": "Pp. xi + 52; 29 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic3.pdf" - ] - }, - { - "title": "Explorations in Hittite Asia Minor: A Preliminary Report.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Communications 2", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1927", - "isbn": "", - "extent": "Pp. viii +104; 101 figures, 2 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic2.pdf" - ] - }, - { - "title": "The Oriental Institute of the University of Chicago: A Beginning and a Program.", - "authors": [ - "James Henry Breast" - ], - "series": "Oriental Institute Communications 1", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1922", - "isbn": "", - "extent": "Pp. 96; 74 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic1.pdf" - ] - }, - { - "title": "Letters from James Henry Breasted to His Family, August 1919–July 1920.", - "authors": [ - "John A. Larson," - ], - "series": "Oriental Institute Digital Archives 1", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2010", - "isbn": "", - "extent": "Pp. 281; 7 figures, 9 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oida1.pdf" - ] - }, - { - "title": "Antoin Sevruguin: Past and Present.", - "authors": [ - "Tasha Vorderstrasse," - ], - "series": "Oriental Institute Museum Publications 40", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2020", - "isbn": "9781614910541, 9781614910572", - "extent": "Pp. 412 (xliv + 368); 259 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIMP/oimp40.pdf" - ] - }, - { - "title": "Book of the Dead: Becoming God in Ancient Egypt.", - "authors": [ - "Foy Scalf," - ], - "series": "Oriental Institute Museum Publications 39", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2017", - "isbn": "9781614910381", - "extent": "Pp. 376; 373illustrations (most color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp39.pdf" - ] - }, - { - "title": "A Cosmopolitan City: Muslims, Christians, and Jews in Old Cairo.", - "authors": [ - "Tasha VorderstrasseTanya Treptow," - ], - "series": "Oriental Institute Museum Publications 38", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2015", - "isbn": "9781614910268", - "extent": "Pp. 232; 185 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp38.pdf" - ] - }, - { - "title": "In Remembrance of Me: Feasting with the Dead in the Ancient Middle East.", - "authors": [ - "Virginia Rimmer HerrmannJ. David Schloen," - ], - "series": "Oriental Institute Museum Publications 37", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2014", - "isbn": "9781614910176", - "extent": "Pp. 176; 140 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp37.pdf" - ] - }, - { - "title": "Our Work: Modern Jobs – Ancient Origins.", - "authors": [ - "Photographs by Jason Reblando", - "interviews by Matthew Cunningham,Jack GreenEmily Teeter," - ], - "series": "Oriental Institute Museum Publications 36", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2013", - "isbn": "9781885923998", - "extent": "Pp. 128; 24 tintype portraits, 46 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp36.pdf" - ] - }, - { - "title": "Between Heaven and Earth: Birds in Ancient Egypt.", - "authors": [ - "Rozenn Bailleul-LeSuer," - ], - "series": "Oriental Institute Museum Publications 35", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2012", - "isbn": "9781885923929", - "extent": "Pp. 232; 210 illustrations (most in color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp35.pdf" - ] - }, - { - "title": "Picturing the Past: Imaging and Imagining the Ancient Middle East.", - "authors": [ - "Jack Green", - "Emily Teeter,John A. Larson," - ], - "series": "Oriental Institute Museum Publications 34", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2012", - "isbn": "9781885923899", - "extent": "Pp. 184; 168 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp34.pdf" - ] - }, - { - "title": "Before the Pyramids: The Origins of Egyptian Civilization.", - "authors": [ - "Emily Teeter," - ], - "series": "Oriental Institute Museum Publications 33", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2011", - "isbn": "9781885923820", - "extent": "Pp. 288; 196 figures (most in color), 129 objects (all in color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIMP/oimp33.pdf" - ] - }, - { - "title": "Visible Language: Inventions of Writing in the Ancient Middle East and Beyond.", - "authors": [ - "Christopher Woods", - ", with Emily TeeterGeoff Emberling. Reprint with minor corrections" - ], - "series": "Oriental Institute Museum Publications 32", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2015", - "isbn": "9781885923769", - "extent": "Pp. 240; 104 pages color", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp32.pdf" - ] - }, - { - "title": "Purchase", - "authors": [ - "" - ], - "series": "Oriental Institute Museum Publications 31", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute" - ], - "publicationDate": "2011", - "isbn": "9781885923653", - "extent": "Pp. xii + 130; 4 B&W and68 color images", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp31.pdf" - ] - }, - { - "title": "Pioneers to the Past: American Archaeologists in the Middle East, 1919–1920.", - "authors": [ - "Geoff Emberling," - ], - "series": "Oriental Institute Museum Publications 30", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute" - ], - "publicationDate": "2010", - "isbn": "9781885923707", - "extent": "Pp. 160 + 119 full color and archival photographs", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp30.pdf" - ] - }, - { - "title": "The Life of Meresamun: A Temple Singer in Ancient Egypt.", - "authors": [ - "Emily TeeterJanet H. Johnson," - ], - "series": "Oriental Institute Museum Publications 29", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2009", - "isbn": "9781885923608", - "extent": "Pp. 135; 120 color and 20 B&W illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp29.pdf" - ] - }, - { - "title": "Catastrophe! The Looting and Destruction of Iraq’s Past", - "authors": [ - ". Geoff EmberlingKatharyn Hanson," - ], - "series": "Oriental Institute Museum Publications 28", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2008", - "isbn": "9781885923561", - "extent": "Pp. 88; 48 illustrations, most in color", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp28.pdf" - ] - }, - { - "title": "European Cartographers and the Ottoman World, 1500–1750: Maps from the Collection of O. J. Sopranos", - "authors": [ - ". Ian Manners." - ], - "series": "Oriental Institute Museum Publications 27", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2007", - "isbn": "9781885923530", - "extent": "Pp. 144; 53 color and 5 B&W illusustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp27.pdf" - ] - }, - { - "title": "Daily Life Ornamented: The Medieval Persian City of Rayy", - "authors": [ - ". Tanya Treptow", - "with the collaboration of Donald Whitcomb." - ], - "series": "Oriental Institute Museum Publications 26", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2007", - "isbn": "9781885923516", - "extent": "Pp. 64;8 B&W and54 color illustrations, 3 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp26.pdf" - ] - }, - { - "title": "The Ancient Near East in the Time of Tutankhamun: A Self-guided Tour.", - "authors": [ - "Geoff EmberlingEmily Teeter." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute Museum" - ], - "publicationDate": "2006", - "isbn": "", - "extent": "Pp. 11; 9 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/time_of_tutankhamun_tour.pdf" - ] - }, - { - "title": "Ancient Nubia.", - "authors": [ - "Oriental Institute Museum." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute Museum" - ], - "publicationDate": "2006", - "isbn": "", - "extent": "Pp. 4; 13 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_nubia_gallery.pdf" - ] - }, - { - "title": "Embroidering Identities: A Century of Palestinian Clothing.", - "authors": [ - "Iman Saca", - "in collaboration with Maha Saca." - ], - "series": "Oriental Institute Museum Publications 25", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "", - "extent": "Pp. 48; 5 B&W and 30 color illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp25.pdf" - ] - }, - { - "title": "Lost Nubia: A Centennial Exhibit of Photographs from the 1905–1907 Egyptian Expedition of the University of Chicago.", - "authors": [ - "John A. Larson." - ], - "series": "Oriental Institute Museum Publications 24", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "9781885923745", - "extent": "Pp. xiii + 109; 58 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp24.pdf" - ] - }, - { - "title": "Ancient Egypt: Treasures from the Collection of the Oriental Institute.", - "authors": [ - "Emily Teeter." - ], - "series": "Oriental Institute Museum Publications 23", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2003", - "isbn": "9781885923257", - "extent": "Pp. 160;82 color and 26 B&W illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp23.pdf" - ] - }, - { - "title": "Artists in Egypt (1920–1935).", - "authors": [ - "John Carswell." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute Museum" - ], - "publicationDate": "1991", - "isbn": "", - "extent": "Pp. 45; 20 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/egyptian_art.pdf" - ] - }, - { - "title": "The Oriental Institute Museum: Highlights from the Collection.", - "authors": [ - "Oriental Institute Museum." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute Museum" - ], - "publicationDate": "1989", - "isbn": "", - "extent": "Pp. 28; 54 B&W and 10 color illustrations, 2 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/museum_highlights_1989.pdf" - ] - }, - { - "title": "A Guide to the Oriental Institute Museum.", - "authors": [ - "Leon Marfoe,Peter T. DanielsValerie M. Fargo," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1982", - "isbn": "", - "extent": "Pp. xiv + 139; 68 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Guide_to_OI_Museum_1982.pdf" - ] - }, - { - "title": "Islamic Bindings & Bookmaking: A Catalogue of an Exhibition in the Oriental Institute Museum, University of Chicago, May 18–August 18, 1981.", - "authors": [ - "Gulnar Bosch", - "John Carswell,Guy Petherbridge." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1981", - "isbn": "", - "extent": "Pp. xii + 235; 91 B&W and 14 color illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/IslamicBindings.pdf" - ] - }, - { - "title": "John D. Rockefeller, Jr. Centenary Exhibition: A Productive Collaboration 1919–1935", - "authors": [ - "." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1974", - "isbn": "", - "extent": "Pp. 24; frontispiece, 3 figures, 1 table, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/rockefeller_centenary.pdf" - ] - }, - { - "title": "A Catalogue of Arabic Manuscripts in the Oriental Institute of Chicago.", - "authors": [ - "Miroslav Krek." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "New Haven: American Oriental Society" - ], - "publicationDate": "1961", - "isbn": "", - "extent": "Pp. ix + 46", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/arabic_mss.pdf" - ] - }, - { - "title": "Iranian Art at the Oriental Institute Museum of the University of Chicago.", - "authors": [ - "Designs by Sue Richert", - "text by Carl H. Kraeling." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute Museum" - ], - "publicationDate": "1951", - "isbn": "", - "extent": "Pp. 24; 20 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/iranian_art.pdf" - ] - }, - { - "title": "The Oriental Institute Handbook and Museum Guide.", - "authors": [ - "Oriental Institute Museum." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute Museum" - ], - "publicationDate": "1941", - "isbn": "", - "extent": "Pp. 35; 23 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/museum_guide_1941.pdf" - ] - }, - { - "title": "Excavations at the Palatial Complex: Kerkenes Final Reports 2", - "authors": [ - ". Geoffrey Summers", - "with contributions by Susanne Berndt", - "Ahmet Çinici", - "Yilmaz Selim Erdal", - "Evangelia Pişkin", - "Noël Siver,Françoise Summers; introduction by Nicholas D. Cahill;Turkish summary by Güzin Eren." - ], - "series": "Oriental Institute Publications 148", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2022", - "isbn": "9781614910794, 9781614910800", - "extent": "Pp. 532 (xlvii + 485)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip148.pdf" - ] - }, - { - "title": "Tell Abada:An Ubaid Village in Central Mesopotamia", - "authors": [ - ". Sabah Abboud Jasim." - ], - "series": "Oriental Institute Publications 147", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2021", - "isbn": "9781614910688, 9781614910695", - "extent": "Pp. 588(xlii+ 546)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip147.pdf" - ] - }, - { - "title": "The Archive of Thotsutmis, Son of Panouphis:Early Ptolemaic Ostraca from Deir El Bahari (O. Edgerton)", - "authors": [ - ". Brian P. Muhs", - "Foy D. Scalf", - "Jacqueline E. Jay." - ], - "series": "Oriental Institute Publications 146", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2021", - "isbn": "9781614910671, 9781614910664", - "extent": "Pp. 228 (xxxii + 196)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip146.pdf" - ] - }, - { - "title": "Excavations at the Cappadocia Gate: Kerkenes Final Reports 1", - "authors": [ - ". Geoffrey D. Summers", - "with contributions by Susanne Berndt", - "Yilmaz Selim Erdal", - "Evangelia Piskin", - "Yasemin Özarslan", - "Noël Siver", - "Francoise Summers", - "Robert Tate,Nilüfer Baturayoğlu Yöney", - "introduction by David Stronach,Turkish summary by Güzin Eren." - ], - "series": "Oriental Institute Publications 145", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2021", - "isbn": "9781614910596, 9781614910602", - "extent": "Pp. 408 (L + 358)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip145.pdf" - ] - }, - { - "title": "The Sheikh's House at Quseir al-Qadim: Documenting a Thirteenth-Century Red Sea Port", - "authors": [ - ". Katherine Strange Burke", - "with contributions by Steven M. GoodmanWilma Wetterstrom." - ], - "series": "Oriental Institute Publications 144", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2021", - "isbn": "9781614910565, 9781614910589", - "extent": "Pp. 424 (lxiv + 360)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip144.pdf" - ] - }, - { - "title": "Excavations in the Plain of Antioch III: Stratigraphy, Pottery, and Small Finds from Chatal Höyük in the Amuq Plain", - "authors": [ - ". Marina Pucci." - ], - "series": "Oriental Institute Publications 143", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2019", - "isbn": "9781614910466", - "extent": "Part 1: pp. lxiv + 336; Part 2: pp. xiv + 570", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/OIP143-1.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/OIP143-2.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/CAT_CH_11_online.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/CAT_CH_14_online.pdf" - ] - }, - { - "title": "The Great Hypostyle Hall in the Temple of Amun at Karnak", - "authors": [ - ". Peter J. Brand", - "Rosa Erika Feleg,William J. Murnane." - ], - "series": "Oriental Institute Publications 142", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2019", - "isbn": "9781614910275", - "extent": "Part 2: pp. xvi + 432; Part 3: pp. xxiv + 328", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip142-2.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip142-3.pdf" - ] - }, - { - "title": "Bir Umm Fawakhir 3: Excavations 1999–2001", - "authors": [ - ". Carol Meyer", - "with contributions by Lisa A. Heidorn", - "Salima Ikram", - "Richard L. Jaeschke", - "Thomas Roby,Wendy Smith." - ], - "series": "Oriental Institute Publications 141", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2014", - "isbn": "9781614910206", - "extent": "Pp. xxviii + 172; 48 figures, 132 plates, 9 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip141.pdf" - ] - }, - { - "title": "Ancient Settlement Systems and Cultures in the Ram Hormuz Plain, Southwestern Iran: Excavations at Tell-e Geser and Regional Survey of the Ram Hormuz Area", - "authors": [ - ". Abbas Alizadeh", - "with contributions by Loghman AhmadzadehMehdi Omidfar,appendices by John R. Alden", - "Leah Minc", - "Jacques Connan", - "John Zumberge,Kendra Imbus." - ], - "series": "Oriental Institute Publications 140", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2014", - "isbn": "9781885923974", - "extent": "Pp. xl + 324; 117 figures, 199 plates (most in color), 28 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip140.pdf" - ] - }, - { - "title": "Early Megiddo on the East Slope (the “Megiddo Stages”): A Report on the Early Occupation of the East Slope of Megiddo (Results of the Oriental Institute’s Excavations, 1925-1933)", - "authors": [ - ". Eliot Braun", - "with David Ilan", - "Ofer Marder", - "Yael Braun,Sariel Shalev." - ], - "series": "Oriental Institute Publications 139", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2013", - "isbn": "9781885923981", - "extent": "Pp. xxxii + 174; 34 figures, 98 plates, 22 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip139.pdf" - ] - }, - { - "title": "Bismaya: Recovering the Lost City of Adab.", - "authors": [ - "Karen Wilson", - "with Jacob Lauinger", - "Monica Louise Phillips", - "Benjamin Studevent-Hickman,Aage Westenholz." - ], - "series": "Oriental Institute Publications 138", - "publisherLocation": "Chicago", - "publisher": [ - "ISBN:" - ], - "publicationDate": "9781885923639", - "isbn": "", - "extent": "Chicago: The Oriental Institute of the University of Chicago, 2012", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip138.pdf" - ] - }, - { - "title": "Tell Hamoukar, Volume 1. Urbanism and Cultural Landscapes in Northeastern Syria: The Tell Hamoukar Survey, 1999-2001.", - "authors": [ - "Jason A. Ur." - ], - "series": "Oriental Institute Publications 137", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2010", - "isbn": "9781885923738", - "extent": "Pp. lxi + 384, includes Preface by McGuire Gibson and Arabic summary; 210 figures, 3 pocket maps, 74 tables.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137_map1.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137_map2.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137_map3.pdf" - ] - }, - { - "title": "Medinet Habu IX. The Eighteenth Dynasty Temple, Part I: The Inner Sanctuaries. With Translations of Texts, Commentary, and Glossary.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 136", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2009", - "isbn": "1885923643, 9781885923646", - "extent": "Pp. xl + 92; 4 figures, 2 ground plans, 142 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip136.pdf" - ] - }, - { - "title": "Kerkenes Special Studies 1: Sculpture and Inscriptions from the Monumental Entrance to the Palatial Complex at Kerkenes Dag, Turkey.", - "authors": [ - "Catherine M. DraycottGeoffrey D. Summers", - "with contribution by Claude BrixheTurkish summary translated by G. Bike Yazıcıoglu." - ], - "series": "Oriental Institute Publications, Volume 135", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2008", - "isbn": "9781885923578", - "extent": "Pp. xxiv + 89; 98 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip135.pdf" - ] - }, - { - "title": "The Archaeology and Geography of Ancient Transcaucasian Societies, Volume 1: The Foundations of Research and Regional Survey in the Tsaghkahovit Plain, Armenia.", - "authors": [ - "Adam T. Smith", - "Ruben S. Badalyan,Pavel Avetisyan", - "with contributions by Alan GreeneLeah Minc." - ], - "series": "Oriental Institute Publications, Volume 134", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2009", - "isbn": "9781885923622", - "extent": "Pp. xlvi + 410; 72 figures, 82 plates, 7 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip134.pdf" - ] - }, - { - "title": "Baked Clay Figurines and Votive Beds from Medinet Habu.", - "authors": [ - "Emily Teeter." - ], - "series": "Oriental Institute Publications 133", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2010", - "isbn": "9781885923585", - "extent": "Pp. xxxiv + 216; 21 figures, 2 plans, 132 plates, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip133.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts, Volume 8. Middle Kingdom Copies of Pyramid Texts.", - "authors": [ - "James P. Allen." - ], - "series": "Oriental Institute Publications 132", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "1885923406", - "extent": "Pp. xv + 456", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip132.pdf" - ] - }, - { - "title": "The Amuq Valley Regional Projects, Volume 1 - Surveys in the Plain of Antioch and Orontes Delta, Turkey, 1995–2002.", - "authors": [ - "Kutlu Aslihan Yener." - ], - "series": "Oriental Institute Publications 131", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2005", - "isbn": "1885923325", - "extent": "Pp. xli + 293 + 145 figures + 8 plates + 5 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP_131.pdf" - ] - }, - { - "title": "Chogha Mish, Volume II. The Development of a Prehistoric Regional Center in Lowland Susiana, Southwestern Iran: Final Report on the Last Six Seasons of Excavations, 1972–1978.", - "authors": [ - "Abbas Alizadeh." - ], - "series": "Oriental Institute Publications 130", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2008", - "isbn": "188592352X, 9781885923523", - "extent": "Pp. xliv + 396; 99 figures, 31 plates, 14 tables; Database of Faunal Remains Available Online", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip130.pdf" - ] - }, - { - "title": "Nippur V. The Early Dynastic To Akkadian Transition: The Area WF Sounding At Nippur", - "authors": [ - ". Augusta McMahon." - ], - "series": "Oriental Institute Publications 129", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "1885923384", - "extent": "Pp. xxxiii + 173; 12 figures, 193 plates, 78 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip129.pdf" - ] - }, - { - "title": "The Origins of State Organizations in Prehistoric Highland Fars, Southern Iran: Excavations at Tall-e Bakun.", - "authors": [ - "Abbas Alizadeh." - ], - "series": "Oriental Institute Publications 128", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "", - "extent": "Pp. xliv + 276 + 42 charts, 76 figures, 26 plates, 51 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip128.pdf" - ] - }, - { - "title": "Megiddo 3: Final Report on the Stratum VI Excavations.", - "authors": [ - "Timothy P. Harrison", - "with contributions by Douglas L. Esse", - "Andrew Graham", - "Ronald G. V. Hancock,Patricia Paice." - ], - "series": "Oriental Institute Publications 127", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2004", - "isbn": "1885923317", - "extent": "Pp. xxxii + 255 + 128 figures (9 color) + 40 plates + 9 tables + 1 CD", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP127.pdf" - ] - }, - { - "title": "Taxes, Taxpayers, And Tax Receipts In Early Ptolemaic Thebes - Demotic and Greek Ostraca from the Oriental Institute Museum, Chicago.", - "authors": [ - "Brian P. Muhs." - ], - "series": "Oriental Institute Publications 126", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2005", - "isbn": "1885923309", - "extent": "Pp. xxv + 262; 1 figure, 32 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP126.pdf" - ] - }, - { - "title": "Excavations at Tell es-Sweyhat, Syria, Volume 2: Archaeology of the Bronze Age, Hellenistic, and Roman Remains at an Ancient Town on the Euphrates River.", - "authors": [ - "Thomas A. Holland." - ], - "series": "Oriental Institute Publications 125", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2006", - "isbn": "1885923333", - "extent": "Vol. 1: Pp. lx + 620; Vol. 2: Pp. xxix; 334 figures, 340 plates, 3 pocket plans", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip125.pdf" - ] - }, - { - "title": "Excavations at Tell Es-Sweyhat, Syria, Volume 1: On the Margin of the Euphrates: Settlement and Land Use at Tell Es-Sweyhat and in the Upper Lake Assad Area, Syria.", - "authors": [ - "Tony J. Wilkinson." - ], - "series": "Oriental Institute Publications 124", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2004", - "isbn": "1885923295", - "extent": "Pp, lii + 276 + 95 figures + 16 plates + 24 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP124.pdf" - ] - }, - { - "title": "Temple of Khonsu, Volume 3. The Graffiti on the Khonsu Temple Roof at Karnak: A Manifestation of Personal Piety.", - "authors": [ - "Helen Jacquet-Gordon." - ], - "series": "Oriental Institute Publications 123", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2003", - "isbn": "1885923260", - "extent": "Pp. xxiv + 120; 5 figures, 126 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP123.pdf" - ] - }, - { - "title": "Neo-Babylonian Texts in the Oriental Institute Collection.", - "authors": [ - "David B. Weisberg." - ], - "series": "Oriental Institute Publications 122", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2003", - "isbn": "1885923287", - "extent": "Pp. xxiv + 258; 72 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP122.pdf" - ] - }, - { - "title": "Cuneiform Texts from the Ur III Period in the Oriental Institute, Volume 2: Drehem Administrative Documents from the Reign of Amar-Suena", - "authors": [ - "Markus Hilgert." - ], - "series": "Oriental Institute Publications 121", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2003", - "isbn": "1885923244", - "extent": "Pp. xxxviii + 649; 23 figures, 79 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP121.pdf" - ] - }, - { - "title": "Excavations at the Prehistoric Mound of Chogha Bonut, Khuzestan, Iran, Seasons 1976/77, 1977/78, and 1996.", - "authors": [ - "Abbas Alizadeh." - ], - "series": "Oriental Institute Publications 120", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2003", - "isbn": "1885923236", - "extent": "Pp. xxxii + 161; 47 figures, 26 plates, 16 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP120.pdf" - ] - }, - { - "title": "Theban Desert Road Survey in the Egyptian Western Desert, Volume 1: Gebel Tjauti Rock Inscriptions 1-45 and Wadi el-Hôl Rock Inscriptions 1-45.", - "authors": [ - "J. C. Darnell", - "with the assistance of D. Darnell." - ], - "series": "Oriental Institute Publications 119", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2002", - "isbn": "1885923171", - "extent": "Pp. lvi + 174; 2 figures, 126 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP119.pdf" - ] - }, - { - "title": "Scarabs, Scaraboids, Seals, and Seal Impressions from Medinet Habu.", - "authors": [ - "Emily Teeter." - ], - "series": "Oriental Institute Publications 118", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2003", - "isbn": "1885923228", - "extent": "Pp. xxiv + 249; 3 figures,110 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP118.pdf" - ] - }, - { - "title": "Seals on the Persepolis Fortification Tablets, Volume I: Images of Heroic Encounter.", - "authors": [ - "Mark B. GarrisonMargaret Cool Root." - ], - "series": "Figure 1. Reconstructed Drawings of Select Cylinders in Volume I.", - "publisherLocation": "Chicago", - "publisher": [ - "Pages" - ], - "publicationDate": "68", - "isbn": "", - "extent": "Plate 4. Photographs and drawing of Catalog Number 4 = PFS 7*.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP117P1.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP117P2.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions at Luxor Temple, Volume 2: The Facade, Portals, Upper Register Scenes, Columns, Marginalia, and Statuary in the Colonnade Hall.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 116", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1998", - "isbn": "9781885923110", - "extent": "Pp. xxviii + 100 in booklet; 99 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip116.pdf" - ] - }, - { - "title": "Cuneiform Texts from the Ur III Period in the Oriental Institute, Volume 1: Drehem Administrative Documents from the Reign of Shulgi.", - "authors": [ - "M. Hilgert." - ], - "series": "Oriental Institute Publications 115", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1998", - "isbn": "1885923074", - "extent": "Pp. xxxii + 576, 44 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip115.pdf" - ] - }, - { - "title": "Nippur IV: The Early Neo-Babylonian Governor’s Archive from Nippur.", - "authors": [ - "S. W. Cole." - ], - "series": "Oriental Institute Publications 114", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1996", - "isbn": "1885923031", - "extent": "Pp. xliv + 458, 3 figures, 128 text copies", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip114.pdf" - ] - }, - { - "title": "The Oriental Institute Hawara Papyri: Demotic and Greek Texts from an Egyptian Family Archive in the Fayum (Fourth to Third Century B.C.).", - "authors": [ - "G. R. HughesR. Jasnow." - ], - "series": "Oriental Institute Publications 113", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1997", - "isbn": "1885923023", - "extent": "Clothbound 9 x 11.75 in / 23 x 30 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip113.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions at Luxor Temple, Volume 1: The Festival Procession of Opet in the Colonnade Hall.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 112", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1994", - "isbn": "9780918986948", - "extent": "Pp. xxvi + 60 in booklet; 128 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip112.pdf" - ] - }, - { - "title": "Nippur III: Kassite Buildings in Area WC-1.", - "authors": [ - "R. L. Zettler." - ], - "series": "Oriental Institute Publications 111", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1993", - "isbn": "0918986915", - "extent": "Pp. xxxvii + 347; 3 figures, 109 plates, 26 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip111.pdf" - ] - }, - { - "title": "Town and Country in Southeastern Anatolia, Volume 2: The Stratigraphic Sequence at Kurban Höyük.", - "authors": [ - "G. Algaze", - "", - "et. al." - ], - "series": "Oriental Institute Publications 110", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "0918986656", - "extent": "Pp. xl + 438; 139 figures, 50 tables; 169 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip110_text.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip110_plates.pdf" - ] - }, - { - "title": "Town and Country in Southeastern Anatolia, Volume 1: Settlement and Land Use at Kurban Höyük and Other Sites in the Lower Karababa Basin.", - "authors": [ - "T. J. Wilkinson", - "et. al." - ], - "series": "Oriental Institute Publications 109", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "0918986648", - "extent": "Pp. xix + 315; 90 figures, 4 plates, 20 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip109.pdf" - ] - }, - { - "title": "The Holmes Expeditions to Luristan.", - "authors": [ - "E. F. Schmidt", - "et. al." - ], - "series": "Oriental Institute Publications 108", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1989", - "isbn": "0918986532", - "extent": "Pp. xv + 594; 20 catalogs, 32 tables, 265 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip108_text.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip108_errata.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip108_plates.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions at Karnak, Volume IV: The Battle Reliefs of King Sety I.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Chicago: The Oriental Institute, 1986", - "publisherLocation": "Chicago", - "publisher": [ - "ISBN" - ], - "publicationDate": "0", - "isbn": "", - "extent": "Pp. xxiv + 166 (including 2 figures) in booklet; 50 plates + key plan", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip107.pdf" - ] - }, - { - "title": "The Great Hypostyle Hall at Karnak, Volume 1, Part 1: The Wall Reliefs.", - "authors": [ - "Harold Hayden Nelson. William J. Murnane," - ], - "series": "Oriental Institute Publications 106", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "", - "isbn": "0918986303", - "extent": "Pp. xxv; 267 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip106.pdf" - ] - }, - { - "title": "Prehistoric Archeology Along the Zagros Flanks.", - "authors": [ - "L. S. Braidwood", - "et. al." - ], - "series": "Oriental Institute Publications 105", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1983", - "isbn": "0918986362", - "extent": "Pp. ix + 695, 5 charts, 244 figures, 185 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip105.pdf" - ] - }, - { - "title": "Earliest Land Tenure Systems in the Near East: Ancient Kudurrus.", - "authors": [ - "I. J. Gelb", - "et. al. ," - ], - "series": "Oriental Institute Publications 104", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1989", - "isbn": "9780918986566", - "extent": "Pp. xviii + 303; 166 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip104_text.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip104_part_2.pdf" - ] - }, - { - "title": "The Temple of Khonsu, Volume 2: Scenes and Inscriptions in the Court and the First Hypostyle Hall.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 103", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1981", - "isbn": "9780918986283", - "extent": "Large portolio 14.5 x 18.5 in / 37 x 47 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip103.pdf" - ] - }, - { - "title": "The Tomb of Kheruef: Theban Tomb 192.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 102", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1980", - "isbn": "0918986230", - "extent": "Pp. xx + 80 (including 3 figures) in booklet; 88 plates (1 in color) + key plans", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip102.pdf" - ] - }, - { - "title": "Chogha Mish, Volume 1: The First Five Seasons, 1961–1971.", - "authors": [ - "Helene KantorP. Delougaz." - ], - "series": "Oriental Institute Publications 101", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1996", - "isbn": "9781885923011", - "extent": "Pp. lv + 508; 49 figures, 283 plates, 50 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip101_text.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip101_plates.pdf" - ] - }, - { - "title": "The Temple of Khonsu, Volume 1: Scenes of King Herihor in the Court.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 100", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1979", - "isbn": "0918986206", - "extent": "Pp. xxvii + 55; 5 figures, 110 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip100.pdf" - ] - }, - { - "title": "Inscriptions from Tell Abu Salabikh.", - "authors": [ - "R. D. Biggs." - ], - "series": "Oriental Institute Publications 99", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1974", - "isbn": "0226622029", - "extent": "Pp. xii + 112; 30 figures, 183 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip99.pdf" - ] - }, - { - "title": "Old Babylonian Public Buildings in the Diyala Region. Part One: Excavations at Ishchali, Part Two: Khafajah Mounds B, C, and D.", - "authors": [ - "H. D. Hill", - "et. al." - ], - "series": "Oriental Institute Publications 98", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "0918986621", - "extent": "Pp. xxxii + 257; 31 figures, 68 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip98.pdf" - ] - }, - { - "title": "Nippur II. The North Temple and Sounding E: Excavations of the Joint Expedition to Nippur of the American Schools of Oriental Research and the Oriental Institute of the University of Chicago.", - "authors": [ - "D. E. McCown", - "et. al." - ], - "series": "Oriental Institute Publications 97", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1978", - "isbn": "9780918986047", - "extent": "Pp. xv + 105; 15 figures, 77 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip97.pdf" - ] - }, - { - "title": "Excavations in the Plain of Antioch, Vol. II: The Structural Remains of the Later Phases: Chatal Hüyük, Tell Al-Judaidah, and Tell Tayinat.", - "authors": [ - "R. C. Haines." - ], - "series": "Oriental Institute Publications 95", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1970", - "isbn": "9780226621982", - "extent": "Pp. xiv + 66; 118 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip95.pdf" - ] - }, - { - "title": "Medinet Habu, Vol. VIII: The Eastern High Gate with Translations of Texts.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 94", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1970", - "isbn": "9780226621975", - "extent": "Pp. xxiii + 14; 10 plans, 70 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip94.pdf" - ] - }, - { - "title": "Medinet Habu, Vol. VII: The Temple Proper, Pt. III: The Third Hypostyle Hall and All Rooms Accessible from It with Friezes of Scenes from the Roof Terraces and Exterior Walls of the Temple.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 93", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1964", - "isbn": "0226621960", - "extent": "Pp. xi, 16 figures, 590 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip93.pdf" - ] - }, - { - "title": "Persepolis Fortification Tablets.", - "authors": [ - "R. T. Hallock." - ], - "series": "Oriental Institute Publications 92", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1969", - "isbn": "0226621952", - "extent": "Pp. x + 776; no illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip92.pdf" - ] - }, - { - "title": "Aramaic Ritual Texts from Persepolis.", - "authors": [ - "R. A. Bowman." - ], - "series": "Oriental Institute Publications 91", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1970", - "isbn": "0226621944", - "extent": "Pp. xiii + 194; 2 figures, 36 plates, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip91.pdf" - ] - }, - { - "title": "Ptolemais: City of the Libyan Pentapolis.", - "authors": [ - "Carl H. Kraeling." - ], - "series": "Oriental Institute Publications 90", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1962", - "isbn": "9780226621937", - "extent": "Pp. xv + 288; 74 figures, 64 plates, 22 plans", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip90.pdf" - ] - }, - { - "title": "Private Houses and Graves in the Diyala Region.", - "authors": [ - "Pinhas Delougaz", - "Harold D. Hill,Seton Lloyd." - ], - "series": "Oriental Institute Publications 88", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1967", - "isbn": "", - "extent": "Pp. xvii + 361; 100 figures, 3 tables, 82 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip88.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts 7, Texts of Spells 787–1185.", - "authors": [ - "Adriaan de Buck." - ], - "series": "Oriental Institute Publications 87", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1961", - "isbn": "", - "extent": "Pp. xvii + 539", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip87.pdf" - ] - }, - { - "title": "The Tomb of Tjanefer at Thebes.", - "authors": [ - "Keith C. Seele. Originally published in" - ], - "series": "Oriental Institute Publications 86", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1959", - "isbn": "", - "extent": "Pp. x + 10; 41 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip86.pdf" - ] - }, - { - "title": "A Byzantine Church at Khirbat al-Karak.", - "authors": [ - "Pinhas DelougazRichard C. Haines." - ], - "series": "Oriental Institute Publications 85", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1960", - "isbn": "", - "extent": "Pp. xi + 68; 4 tables, 62 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip85.pdf" - ] - }, - { - "title": "Medinet Habu, Volume VI. The Temple Proper, Part II: The Re Chapel, the Royal Mortuary Complex, and Adjacent Rooms with Miscellaneous Material from the Pylons, the Forecourts, and the First Hypostyle Hall.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 84", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1963", - "isbn": "", - "extent": "Pp. xix; 1 plan, 120 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip84.pdf" - ] - }, - { - "title": "Medinet Habu, Volume V. The Temple Proper, Part I: The Portico, the Treasury, and Chapels Adjoining the First Hypostyle Hall with Marginal Material from the Forecourts.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 83", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "", - "extent": "Pp. xx; 1 plan,113 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip83.pdf" - ] - }, - { - "title": "The Egyptian Book of the Dead: Documents in the Oriental Institute Museum at the University of Chicago.", - "authors": [ - "Thomas George Allen," - ], - "series": "Oriental Institute Publications 82", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1960", - "isbn": "9781885923806", - "extent": "Pp. xxxiii + 289; 131 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip82.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts, Volume 6: Texts of Spells 472–787.", - "authors": [ - "Adriaan de Buck." - ], - "series": "Oriental Institute Publications 81", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1956", - "isbn": "", - "extent": "Pp. xv + 415", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip81.pdf" - ] - }, - { - "title": "Demotic Ostraca from Medinet Habu.", - "authors": [ - "Miriam Lichtheim." - ], - "series": "Oriental Institute Publications 80", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "", - "extent": "Pp. xiii + 85; 53 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip80.pdf" - ] - }, - { - "title": "Soundings at Tell Fakhariyah.", - "authors": [ - "C. W. McEwan", - "et. al." - ], - "series": "Oriental Institute Publications 79", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "0226079449", - "extent": "Pp. xvii + 103; 87 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip79.pdf" - ] - }, - { - "title": "Nippur I, Temple of Enlil, Scribal Quarter, and Soundings: Excavations of the Joint Expedition to Nippur of the University Museum of Philadelphia and the Oriental Institute of the University of Chicago.", - "authors": [ - "Donald E. McCownRichard C. Haines", - "assisted by Donald P. Hansen." - ], - "series": "Oriental Institute Publications 78", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1967", - "isbn": "", - "extent": "Pp. xxi + 184; 3 tables, 167 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip78.pdf" - ] - }, - { - "title": "Studies in Arabic Literary Papyri, Volume III: Language and Literature.", - "authors": [ - "N. Abbott." - ], - "series": "Oriental Institute Publications 77", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1972", - "isbn": "9780226621784", - "extent": "Pp. xvi + 216; 10 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip77.pdf" - ] - }, - { - "title": "Studies in Arabic Literary Papyri II: Qur'anic Commentary and Tradition.", - "authors": [ - "N. Abbott." - ], - "series": "Oriental Institute Publications 76", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1967", - "isbn": "", - "extent": "Pp. xvi + 293; 27 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip76.pdf" - ] - }, - { - "title": "Studies in Arabic Literary Papyri I: Historical Texts.", - "authors": [ - "N. Abbott." - ], - "series": "Oriental Institute Publications 75", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "", - "extent": "Pp. xiv + 123; 13 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip75.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions at Karnak, Volume III. The Bubastite Portal.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 74", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1954", - "isbn": "", - "extent": "Pp. xiv; 1 figure, 22 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip74.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts 5: Texts of Spells 355-471.", - "authors": [ - "Adriaan de Buck." - ], - "series": "Oriental Institute Publications 73", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1954", - "isbn": "", - "extent": "Pp. xv + 400", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip73.pdf" - ] - }, - { - "title": "Stratified Cylinder Seals from the Diyala Region.", - "authors": [ - "Henri Frankfort", - "with a chapter by Thorkild Jacobsen." - ], - "series": "Oriental Institute Publications 72", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1955", - "isbn": "", - "extent": "Pp. xi + 78; 6 figures, 2 tables, 96 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip72.pdf" - ] - }, - { - "title": "Coptic Ostraca from Medinet Habu.", - "authors": [ - "Elizabeth StefanskiMiriam Lichtheim." - ], - "series": "Oriental Institute Publications 71", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1952", - "isbn": "", - "extent": "Pp. xi + 51; 1 table, 400 figures, 5 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip71.pdf" - ] - }, - { - "title": "Persepolis III: The Royal Tombs and Other Monuments.", - "authors": [ - "E. F. Schmidt." - ], - "series": "Oriental Institute Publications 70", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1970", - "isbn": "0226621707", - "extent": "Pp. xxiv + 174; 53 figures, 105 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip70.pdf" - ] - }, - { - "title": "Persepolis II: Contents of the Treasury and Other Discoveries.", - "authors": [ - "Erich F. Schmidt", - "with contributions by Sydney P. Noe et al.", - "Frederick R. Matson", - "Lawrence J. Howell,Louisa Bellinger." - ], - "series": "Oriental Institute Publications 69", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "9781885923721", - "extent": "Pp. xx + 166; 29 figures, 89 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip69.pdf" - ] - }, - { - "title": "Persepolis I: Structures, Reliefs, Inscriptions.", - "authors": [ - "Erich F. Schmidt", - "with contribution by F. R. Matson." - ], - "series": "Oriental Institute Publications 68", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1953", - "isbn": "", - "extent": "Pp. xxix + 297; 123 figures, 205 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip68.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts, Volume 4: Texts of Spells 268–354.", - "authors": [ - "Adriaan De Buck." - ], - "series": "Oriental Institute Publications 67", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1951", - "isbn": "", - "extent": "Pp. xv + 413", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip67.pdf" - ] - }, - { - "title": "Post-Ramessid Remains. The Excavation of Medinet Habu, Volume 5.", - "authors": [ - "Uvo Hölscher." - ], - "series": "Oriental Institute Publications 66", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1954", - "isbn": "", - "extent": "Pp. xiii + 81; 106 figures, 48 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip66.pdf" - ] - }, - { - "title": "Persepolis Treasury Tablets.", - "authors": [ - "George G. Cameron." - ], - "series": "Oriental Institute Publications 65", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1948", - "isbn": "", - "extent": "Pp. xviii + 214; 46 plates, 6 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip65.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts 3: Texts of Spells 164–267.", - "authors": [ - "Adriaan de Buck." - ], - "series": "Oriental Institute Publications 63", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1947", - "isbn": "", - "extent": "Pp. xv + 401", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip64.pdf" - ] - }, - { - "title": "Pottery from the Diyala Region.", - "authors": [ - "Pinhas Delougaz." - ], - "series": "Oriental Institute Publications 63", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1952", - "isbn": "0226142337", - "extent": "Pp. xxii + 182; color frontispiece, 10 figures, 3 tables, 199 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip63.pdf" - ] - }, - { - "title": "Megiddo 2. Seasons of 1935–39: Text and Plates.", - "authors": [ - "Gordon Loud." - ], - "series": "Oriental Institute Publications 62", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1948", - "isbn": "", - "extent": "Part 1, Text:Pp. xxi + 199; 416 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip62_text.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip62_plates.pdf" - ] - }, - { - "title": "Excavations in the Plain of Antioch I: The Earlier Assemblages Phases A-J.", - "authors": [ - "Robert J. BraidwoodLinda S. Braidwood." - ], - "series": "Oriental Institute Publications 61", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1960", - "isbn": "", - "extent": "Pp. xxvii + 601; 89 plates, 386 figures, 5 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip61.pdf" - ] - }, - { - "title": "More Sculpture from the Diyala Region.", - "authors": [ - "Henri Frankfort." - ], - "series": "Oriental Institute Publications 60", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1943", - "isbn": "", - "extent": "Pp. xiii + 48; frontispiece; 6 figures; 1 map; 1 table; 95 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip60.pdf" - ] - }, - { - "title": "Tall-i-Bakun A: Season of 1932.", - "authors": [ - "Alexander LangsdorffDonald E. McCown." - ], - "series": "Oriental Institute Publications 59", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "Pp. xi + 82; 19 figures; 1 table; 85 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip59.pdf" - ] - }, - { - "title": "Pre-Sargonid Temples in the Diyala Region.", - "authors": [ - "Pinhas DelougazSeton Lloyd", - "with chapters by Henri FrankfortThorkild Jacobsen." - ], - "series": "Oriental Institute Publications 58", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "Pp. xvii + 320; 213 figures, 1 map, 28 plates, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip58.pdf" - ] - }, - { - "title": "Nuzi Personal Names.", - "authors": [ - "Ignace J. Gelb", - "Pierre M. Purves,Allan A. MacRae." - ], - "series": "Oriental Institute Publications 57", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1943", - "isbn": "", - "extent": "Pp. xviii + 324", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip57.pdf" - ] - }, - { - "title": "Key Plans Showing Locations of Theban Temple Decorations.", - "authors": [ - "Harold Hayden Nelson." - ], - "series": "Oriental Institute Publications 56", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1941", - "isbn": "", - "extent": "Pp. xi; 38 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip56.pdf" - ] - }, - { - "title": "The Excavation of Medinet Habu, Volume IV. The Mortuary Temple of Ramses III, Part II.", - "authors": [ - "Uvo Hölscher", - "with contributions by Rudolf Anthes." - ], - "series": "Oriental Institute Publications, Volume 55", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1951", - "isbn": "", - "extent": "", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip55.pdf" - ] - }, - { - "title": "The Mortuary Temple of Ramses III, Part 1. The Excavation of Medinet Habu, Volume 3.", - "authors": [ - "Uvo Hölscher." - ], - "series": "Oriental Institute Publications 54", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1941", - "isbn": "", - "extent": "Pp. xiii + 87; 56 figures, 40 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip54.pdf" - ] - }, - { - "title": "The Temple Oval at Khafajah.", - "authors": [ - "Pinhas Delougaz", - "with a chapter by Thorkild Jacobsen." - ], - "series": "Oriental Institute Publications 53", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xix + 175; Frontispiece; 126 figures; 12 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip53.pdf" - ] - }, - { - "title": "The Megiddo Ivories.", - "authors": [ - "Gordon Loud." - ], - "series": "Oriental Institute Publications 52", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xi + 25; 8 figures, 63 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip52.pdf" - ] - }, - { - "title": "Medinet Habu, Volume 4. Festival Scenes of Ramses III.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 51", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xii; 1 key plan, 57 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip51.pdf" - ] - }, - { - "title": "The Rise of the North Arabic Script and Its Kur'anic Development, with a Full Description of the Kur'an Manuscripts in the Oriental Institute", - "authors": [ - ". Nabia Abbott." - ], - "series": "Oriental Institute Publications 50", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xxii + 103; 33 plates, 1 text figure, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip50.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts, Volume 2: Texts of Spells 76–163.", - "authors": [ - "Adriaan De Buck." - ], - "series": "Oriental Institute Publications 49", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xiv + 405", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip49.pdf" - ] - }, - { - "title": "Mounds in the Plain of Antioch: An Archeological Survey.", - "authors": [ - "Robert J. Braidwood." - ], - "series": "Oriental Institute Publications 48", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1937", - "isbn": "", - "extent": "Pp. xi + 67; 9 figures, 27 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip48.pdf" - ] - }, - { - "title": "Ancient Oriental Cylinder and Other Seals with a Description of the Collection of Mrs. William H. Moore.", - "authors": [ - "Gustavus A. Eisen." - ], - "series": "Oriental Institute Publications 47", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xiii + 94; 17 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip47.pdf" - ] - }, - { - "title": "Paleolithic Man and the Nile Valley in Lower Egypt with Some Notes upon a Part of the Red Sea Littoral: A Study of the Regions during Pliocene and Pleistocene Times.", - "authors": [ - "K. S. SandfordW. J. Arkell." - ], - "series": "Oriental Institute Publications 46", - "publisherLocation": "Chicago", - "publisher": [ - "Prehistoric Survey of Egypt and Western Asia Volume IV" - ], - "publicationDate": "", - "isbn": "", - "extent": "Chicago: The University of Chicago Press, 1939", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip46.pdf" - ] - }, - { - "title": "Hittite Hieroglyphic Monuments.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Oriental Institute Publications 45", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xviii + 40; 4 figures, 1 map, 94 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip45.pdf" - ] - }, - { - "title": "Sculpture of the Third Millennium B.C. from Tell Asmar and Khafajah.", - "authors": [ - "Henri Frankfort." - ], - "series": "Oriental Institute Publications 44", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xiii + 87; color frontispiece; 5 figures; 115 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip44.pdf" - ] - }, - { - "title": "The Gimilsin Temple and the Palace of the Rulers at Tell Asmar.", - "authors": [ - "Henri Frankfort", - "Seton Lloyd,Thorkild Jacobsen", - "with a chapter by Günter Martiny." - ], - "series": "Oriental Institute Publications 43", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xviii + 271; 131 figures, frontispiece, 24 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip43.pdf" - ] - }, - { - "title": "Megiddo 1. Seasons of 1925–34: Strata I–V.", - "authors": [ - "Robert S. LamonGeoffrey M. Shipton." - ], - "series": "Oriental Institute Publications 42", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "0226142337", - "extent": "Pp. xxii + 182; color frontispiece; 10 figures; 3 tables; 199 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip42.pdf" - ] - }, - { - "title": "The Excavation of Medinet Habu, Volume 2: The Temples of the Eighteenth Dynasty.", - "authors": [ - "Uvo Hölscher." - ], - "series": "Oriental Institute Publications 41", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xvii + 123; 3 tables, 96 figures, 58 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip41.pdf" - ] - }, - { - "title": "Khorsabad, Part 2: The Citadel and the Town.", - "authors": [ - "Gordon LoudCharles B. Altman." - ], - "series": "Oriental Institute Publications 40", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xxi + 115; 12 figures, 91 plates [3 in color]", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip40.pdf" - ] - }, - { - "title": "The Mastaba of Mereruka, Part II: Chamber A 11-13, Doorjambs and Inscriptions of Chambers A 1-21, Tomb Chamber, and Exterior.", - "authors": [ - "The Sakkarah Expedition." - ], - "series": "Oriental Institute Publications 39", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xiii; 7 architectural drawings, 115 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip39.pdf" - ] - }, - { - "title": "Khorsabad, Part 1: Excavations in the Palace and at a City Gate.", - "authors": [ - "Gordon Loud." - ], - "series": "Oriental Institute Publications 38", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xv + 139; 129 figures, frontispiece, 3 plates in color", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip38.pdf" - ] - }, - { - "title": "Ancient Oriental Seals in the Collection of Mrs. Agnes Baldwin Brett.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Publications 37", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xi + 76; 20 figures; 12 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip37.pdf" - ] - }, - { - "title": "Medinet Habu Graffiti: Facsimiles.", - "authors": [ - "William F. Edgerton," - ], - "series": "Oriental Institute Publications 36", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1937", - "isbn": "", - "extent": "Pp. xi + 6, 11 figures + 103 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip36.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions at Karnak, Volume II. Ramses III's Temple within the Great Inclosure of Amon, Part II; and Ramses III's Temple in the Precinct of Mut.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications, Volume 35", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xi; 5 plans, 47 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip35.pdf" - ] - }, - { - "title": "The Egyptian Coffin Texts 1: Texts of Spells 1-75.", - "authors": [ - "Adriaan De Buck." - ], - "series": "Oriental Institute Publications, Volume 34", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xix + 405", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip34.pdf" - ] - }, - { - "title": "Megiddo Tombs.", - "authors": [ - "P. L. O. Guy." - ], - "series": "Oriental Institute Publications 33", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xxiv + 224; 206 figures, 176 plates, 6 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip33.pdf" - ] - }, - { - "title": "The Megiddo Water System.", - "authors": [ - "Robert S. Lamon." - ], - "series": "Oriental Institute Publications 32", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xii + 41; 30 figures, 8 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip32.pdf" - ] - }, - { - "title": "The Mastaba of Mereruka, Part I. Chambers A 1-10.", - "authors": [ - "The Sakkara Expedition." - ], - "series": "Oriental Institute Publications 31", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xxv + 18; 8 plans and drawings, 103 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip31.pdf" - ] - }, - { - "title": "Researches in Anatolia 9. The Alishar Hüyük Seasons of 1930-32, Part 3.", - "authors": [ - "Hans Henning von der Osten", - "with contributions by Wilton Marion Krogmanothers." - ], - "series": "Oriental Institute Publications 30", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1937", - "isbn": "", - "extent": "pp. xxiv + 496; 289 figures, 20 maps, 15 plates, 9 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip30.pdf" - ] - }, - { - "title": "Researches in Anatolia 8. The Alishar Hüyük Seasons of 1930-32, Part 2.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Publications 29", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1937", - "isbn": "", - "extent": "Pp. xxii + 481; frontispiece, 513 figures, 25 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip29.pdf" - ] - }, - { - "title": "Researches in Anatolia 7. The Alishar Hüyük Seasons of 1930-32, Part 1.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Publications 28", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1937", - "isbn": "", - "extent": "pp. xxii + 283; 280 figures, 10 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip28.pdf" - ] - }, - { - "title": "Researches in Anatolia 6. Inscriptions from Alishar and Vicinity.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Oriental Institute Publications 27", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xv + 84; 5 figures; 63 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip27.pdf" - ] - }, - { - "title": "Material Remains of the Megiddo Cult.", - "authors": [ - "Herbert Gordon May." - ], - "series": "Oriental Institute Publications 26", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xiv + 51; 13 figures, 41 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip26.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions at Karnak, Volume I. Ramses III's Temple with the Great Inclosure of Amon, Part I.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 25", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xix; 5 figures, 78 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip25.pdf" - ] - }, - { - "title": "Sennacherib’s Aqueduct at Jerwan", - "authors": [ - "Thorkild JacobsenSeton Lloyd." - ], - "series": "Oriental Institute Publications 24", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xii + 52; 12 figures, frontispiece, 36 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip24.pdf" - ] - }, - { - "title": "Medinet Habu, Volume III. The Calendar, the “Slaughterhouse,” and Minor Records of Ramses III.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 23", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. xvi; 5 figures, 61 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip23.pdf" - ] - }, - { - "title": "Ancient Oriental Seals in the Collection of Mr. Edward T. Newell.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Publications 22", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "", - "extent": "Pp. xiii + 204; 28 figures; 41 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip22.pdf" - ] - }, - { - "title": "The Excavation of Medinet Habu, Volume 1: General Plans and Views.", - "authors": [ - "Uvo Hölscher." - ], - "series": "Oriental Institiute Publications 21", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Hardbound 19 x 24 inches", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip21.pdf" - ] - }, - { - "title": "Researches in Anatolia 5. The Alishar Hüyük Seasons of 1928 and 1929, Part 2.", - "authors": [ - "Erich F. Schmidt", - "with a chapter by Wilton Marion Krogman." - ], - "series": "Oriental Institute Publications 20", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "pp. xvii + 148; 4 tables, frontispiece, 198 figures, 11 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip20.pdf" - ] - }, - { - "title": "Researches in Anatolia 4. The Alishar Hüyük Seasons of 1928 and 1929, Part 1.", - "authors": [ - "Erich F. Schmidt." - ], - "series": "Oriental Institute Publications 19", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. xxi + 293; frontispiece, 377 figures, 46 plates", - "url": [ - "https://isac.uchicago.edu/https://isac-idb-static.uchicago.edu/multimedia/333/oip19.pdf" - ] - }, - { - "title": "Paleolithic Man and the Nile Valley in Upper and Middle Egypt: A Study of the Region during Pliocene and Pleistocene Times.", - "authors": [ - "K. S. Sandford." - ], - "series": "Oriental Institute Publications 18", - "publisherLocation": "Chicago", - "publisher": [ - "Prehistoric Survey of Egypt and Western Asia Volume III" - ], - "publicationDate": "", - "isbn": "", - "extent": "Chicago: The University of Chicago Press, 1934", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip18.pdf" - ] - }, - { - "title": "Paleolithic Man and the Nile-Faiyum Divide in Nubia and Upper Egypt: A Study of the Region during Pliocene and Pleistocene Times.", - "authors": [ - "K. S. SandfordW. J. Arkell." - ], - "series": "Oriental Institute Publications, Volume 17", - "publisherLocation": "Chicago", - "publisher": [ - "Prehistoric Survey of Egypt and Western Asia II" - ], - "publicationDate": "", - "isbn": "", - "extent": "Chicago: University of Chicago Press, 1933", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip17.pdf" - ] - }, - { - "title": "Cuneiform Series, Volume IV: Sumerian Texts of Varied Contents.", - "authors": [ - "Edward Chiera." - ], - "series": "Oriental Institute Publications 16", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "PPp. ix + 109 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip16.pdf" - ] - }, - { - "title": "Cuneiform Series, Volume III: Sumerian Epics and Myths.", - "authors": [ - "Edward Chiera." - ], - "series": "Oriental Institute Publications 15", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. xi + 8; 111 plates with 117 texts in facsimile", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip15.pdf" - ] - }, - { - "title": "Cuneiform Series, Vol. II: Inscriptions from from Adab.", - "authors": [ - "Daniel David Luckenbill." - ], - "series": "Oriental Institute Publications 14", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "", - "extent": "Pp. ix + 8; 87 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip14.pdf" - ] - }, - { - "title": "Barhebraeus' Scholia on the Old Testament. Part I: Genesis - II Samuel.", - "authors": [ - "Martin SprenglingWilliam Creighton Graham," - ], - "series": "Oriental Institute Publications 13", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. xvi + 393; 142 text illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip13.pdf" - ] - }, - { - "title": "The Proverbs of Solomon in Sahidic Coptic According to the Chicago Manuscript.", - "authors": [ - "William H. Worrell," - ], - "series": "Oriental Institute Publications 12", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. xxxii + 107; 1 plate", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip12.pdf" - ] - }, - { - "title": "Cuneiform Series, Volume I: Sumerian Lexical Texts from the Temple School of Nippur.", - "authors": [ - "Edward Chiera." - ], - "series": "Oriental Institute Publications 11", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "", - "extent": "Pp. xi + 19; 126 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip11.pdf" - ] - }, - { - "title": "Prehistoric Survey of Egypt and Western Asia, Vol. I: Paleolithic Man and the Nile-Faiyum Divide: A Study of the Region During Pliocene and Pleistocene Times.", - "authors": [ - "K. S. SandfordW. J. Arkell." - ], - "series": "Oriental Institute Publications 10", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "0226621049", - "extent": "Pp. xv + 77, 25 figures, 11 plates, 1 map (printed in color on sturdy canvas, folded at end of book)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip10.pdf" - ] - }, - { - "title": "Medinet Habu, Volume II. The Later Historical Records of Ramses III", - "authors": [ - ". The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 9", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. x; 6 figures, 76 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip9.pdf" - ] - }, - { - "title": "Medinet Habu, Volume I. Earlier Historical Records of Ramses III.", - "authors": [ - "The Epigraphic Survey." - ], - "series": "Oriental Institute Publications 8", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "", - "extent": "Pp. xviii + 10; 2 figures, 54 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip8.pdf" - ] - }, - { - "title": "Researches in Anatolia 3. The Alishar Hüyük Season of 1927, Part 2.", - "authors": [ - "Hans Henning von der OstenErich F. Schmidt." - ], - "series": "Oriental Institute Publications 7", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "pp. xii + 134; frontispiece, 106 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip7.pdf" - ] - }, - { - "title": "Researches in Anatolia 2. The Alishar Hüyük Season of 1927, Part 1.", - "authors": [ - "Hans Henning von der OstenErich F. Schmidt." - ], - "series": "Oriental Institute Publications 6", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "", - "extent": "Pp. xii + 284; 251 figures, 5 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip6.pdf" - ] - }, - { - "title": "OIP 5.Researches in Anatolia 1. Explorations in Central Anatolia, Season of 1926.", - "authors": [ - "Hans Henning von der Osten." - ], - "series": "Oriental Institute Publications 5", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1929", - "isbn": "", - "extent": "Pp. xix + 167; 242 figures; 24 plates; 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip5.pdf" - ] - }, - { - "title": "OIP 4.The Edwin Smith Surgical Papyrus, Volume 2: Facsimile Plates and Line for Line Hieroglyphic Transliteration.", - "authors": [ - "James Henry Breast Originally published in ", - "revised in" - ], - "series": "Oriental Institute Publications 4", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "9780918986733", - "extent": "Pp. xiii, 46 color plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip4.pdf" - ] - }, - { - "title": "The Edwin Smith Surgical Papyrus, Volume 1: Hieroglyphic Transliteration, Translation, and Commentary.", - "authors": [ - "James Henry Breast Originally published in ", - "revised in" - ], - "series": "Oriental Institute Publications 3", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1930", - "isbn": "9780918986733", - "extent": "Pp. xxiv + 596, 8 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip3.pdf" - ] - }, - { - "title": "The Annals of Sennacherib.", - "authors": [ - "Daniel David Luckenbill." - ], - "series": "Oriental Institute Publications 2", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1924", - "isbn": "", - "extent": "Pp. xi + 196; 2 plates; 25 pages of autographed texts", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip2.pdf" - ] - }, - { - "title": "Oriental Forerunners of Byzantine Painting: First-Century Wall Paintings from the Fortress of Dura on the Middle Euphrates.", - "authors": [ - "James Henry Breast" - ], - "series": "Oriental Institute Publications 1", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1924", - "isbn": "", - "extent": "Pp. 105, 58 figures, 23 plates, 2 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip1.pdf" - ] - }, - { - "title": "“Like ʾIlu Are You Wise”: Studies in Northwest Semitic Languages and Literatures in Honor of Dennis G. Pardee.", - "authors": [ - "H. H. Hardy II", - "Joseph Lam,Eric D. Reymond," - ], - "series": "Studies in Ancient Oriental Civilization 73", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2022", - "extent": "Pp. lii + 596; 44 illustrations", - "isbn": "9781614910756", - "url": [] - }, - { - "title": "The Ritual Landscape at Persepolis.", - "authors": [ - "Mark B. Garrison." - ], - "series": "Studies in Ancient Oriental Civilization 72", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2017", - "extent": "Pp. xlvi+ 448; 202figures, 63 plates", - "isbn": "9781614910343", - "url": [] - }, - { - "title": "From Sherds to Landscapes: Studies on the Ancient Near East in Honor of McGuire Gibson.", - "authors": [ - "Mark AltaweelCarrie Hritz," - ], - "series": "Studies in Ancient Oriental Civilization 71", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2021", - "isbn": "9781614910633, 9781614910640", - "extent": "Pp. 364 (xxvi + 338);224 figures(many color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/SAOC/saoc71.pdf" - ] - }, - { - "title": "Essays for the Library of Seshat: Studies Presented to Janet H. Johnson on the Occasion of Her 70th Birthday.", - "authors": [ - "Robert K. Ritner," - ], - "series": "Studies in Ancient Oriental Civilization 70", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2017", - "isbn": "9781614910329", - "extent": "Pp. xii+ 452; 262 illustrations (many color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/SAOC/saoc70.pdf" - ] - }, - { - "title": "Creativity and Innovation in the Reign of Hatshepsut.", - "authors": [ - "José M. Galán", - "Betsy M. Bryan,Peter F. Dorman," - ], - "series": "Studies in Ancient Oriental Civilization 69", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2014", - "isbn": "9781614910244", - "extent": "Pp. lxx +442; 284 figures,6 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc69.pdf" - ] - }, - { - "title": "Extraction & Control: Studies in Honor of Matthew W. Stolper.", - "authors": [ - "Michael Kozuh", - "Wouter F. M. Henkelman", - "Charles E. Jones,Christopher Woods," - ], - "series": "Studies in Ancient Oriental Civilization 68", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2014", - "isbn": "9781614910015", - "extent": "Pp. xvi + 352; frontispiece (Matthew W. Stolper); 140 illustrations, 9 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc68.pdf" - ] - }, - { - "title": "Language and Nature: Papers Presented to John Huehnergard on the Occasion of His 60th Birthday.", - "authors": [ - "Rebecca HasselbachNa’ama Pat-El," - ], - "series": "Studies in Ancient Oriental Civilization 67", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2012", - "isbn": "9781885923912", - "extent": "Pp. xxii + 476 (frontispiece John Huehnergard); 3 tables, 30 original illustrations, 32 linked mp4 videos", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc67.pdf" - ] - }, - { - "title": "Pesher Nahum: Texts and Studies in Jewish History and Literature from Antiquity through the Middle Ages Presented to Norman (Nahum) Golb.", - "authors": [ - "Joel L. KraemerMichael G. Wechsler", - "", - "with the participation of Fred Donner", - "Joshua Holo,Dennis Pardee." - ], - "series": "Studies in Ancient Oriental Civilization 66", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2012", - "isbn": "9781885923875", - "extent": "Pp. xxiv + 360 + 56* (Hebrew); frontispiece (Norman Golb), 2 figures, 13 plates, 2 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc66.pdf" - ] - }, - { - "title": "Perspectives on Ptolemaic Thebes. Occasional Proceedings of the Theban Workshop.", - "authors": [ - "Peter F. DormanBetsy M. Bryan," - ], - "series": "Studies in Ancient Oriental Civilization 65", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2011", - "isbn": "9781885923851", - "extent": "Pp. xiv + 146; 77 figures, 5 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc65.pdf" - ] - }, - { - "title": "Grammatical Case in the Languages of the Middle East and Europe. Acts of the International Colloquium Variations, concurrence et evolution des cas dans divers domaines linguistiques, Paris, 2-4 April 2007.", - "authors": [ - "Michèle Fruyt", - "Michel Mazoyer,Dennis Pardee," - ], - "series": "Studies in Ancient Oriental Civilization 64", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2011", - "isbn": "9781885923844, 1885923848", - "extent": "Pp. viii+ 420; 25 figures, 3 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc64.pdf" - ] - }, - { - "title": "Beyond the Ubaid: Transformation and Integration in the Late Prehistoric Societies of the Middle East.", - "authors": [ - "Robert A. CarterGraham Philip," - ], - "series": "Studies in Ancient Oriental Civilization 63", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2010", - "isbn": "9781885923660", - "extent": "Pp. ix + 396; 147 figures, 11 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc63.pdf" - ] - }, - { - "title": "Proceedings of the 51st Rencontre Assyriologique Internationale, Held at the Oriental Institute of the University of Chicago, July 18–22, 2005.", - "authors": [ - "" - ], - "series": "Studies in Ancient Oriental Civilization 62", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2008", - "isbn": "9781885923547", - "extent": "ISBN-10: 1-885923-54-6", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc62.pdf" - ] - }, - { - "title": "Sacred Space and Sacred Function in Ancient Thebes.", - "authors": [ - "Peter F. DormanBetsy M. Bryan," - ], - "series": "Studies in Ancient Oriental Civilization 61", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2007", - "extent": "Pp. xxiv + 192; 122 figures", - "isbn": "9781885923462", - "url": [] - }, - { - "title": "Studies in Semitic and Afroasiatic Linguistics Presented to Gene B. Gragg.", - "authors": [ - "Cynthia L. Miller," - ], - "series": "Studies in Ancient Oriental Civilization 60", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2007", - "isbn": "9781885923417, 1885923414", - "extent": "Pp. xxviii + 220; frontispiece (Gene B. Gragg), 16 figures, 2 maps, 9 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc60.pdf" - ] - }, - { - "title": "Studies in the Archaeology of Israel and Neighboring Lands in Memory of Douglas L. Esse.", - "authors": [ - "Samuel R. Wolff," - ], - "series": "Studies in Ancient Oriental Civilization 59", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2001", - "isbn": "1885923155", - "extent": "Pp. xviii + 704, 184 figures, 21 plates, 46 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/SAOC59.pdf" - ] - }, - { - "title": "Gold of Praise: Studies on Ancient Egypt in Honor of Edward F. Wente.", - "authors": [ - "E. TeeterJ. A. Larson," - ], - "series": "Studies in Ancient Oriental Civilization 58", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1999", - "isbn": "1885923090", - "extent": "Pp. xxxi + 494, 140 figures, 7 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc58.pdf" - ] - }, - { - "title": "The Presentation of Maat: Ritual and Legitimacy in Ancient Egypt.", - "authors": [ - "Emily Teeter." - ], - "series": "Studies in Ancient Oriental Civilization 57", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1997", - "isbn": "1885923058", - "extent": "Pp. l + 166; 24 plates, 4 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc57.pdf" - ] - }, - { - "title": "Portrait Mummies from Roman Egypt (I-IV Centuries A.D.) with a Catalog of Portrait Mummies in Egyptian Museums.", - "authors": [ - "Lorelei H. Corcoran." - ], - "series": "Studies in Ancient Oriental Civilization 56", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1995", - "isbn": "9780918986993", - "extent": "Pp. xxx + 250; 42 figures, 2 maps, 5 tables, 32 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc56.pdf" - ] - }, - { - "title": "For His Ka: Essays Offered in Memory of Klaus Baer.", - "authors": [ - "D. P. Silverman," - ], - "series": "Studies in Ancient Oriental Civilization 55", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1994", - "isbn": "0918986931", - "extent": "Pp. xxviii + 332, 75 figures, 7 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc55.pdf" - ] - }, - { - "title": "The Mechanics of Ancient Egyptian Magial Practice.", - "authors": [ - "R. K. Ritner." - ], - "series": "Studies in Ancient Oriental Civilization 54", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1993", - "isbn": "0918986753", - "extent": "Pp. xviii + 322, 22 figures, 2 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc54_4th.pdf" - ] - }, - { - "title": "Glass from Quseir al-Qadim and the Indian Ocean Trade.", - "authors": [ - "C. Meyer." - ], - "series": "Studies in Ancient Oriental Civilization 53", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1992", - "extent": "Pp. xvi + 200, 6 figures, 21 plates", - "isbn": "0918986664", - "url": [] - }, - { - "title": "A Late Period Hieratic Wisdom Text (P. Brooklyn 47.218.135).", - "authors": [ - "R. Jasnow." - ], - "series": "Studies in Ancient Oriental Civilization 52", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1992", - "isbn": "0918986850", - "extent": "Pp. xviii + 240, 20 figures, 4 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc52.pdf" - ] - }, - { - "title": "Life in a Multi-Cultural Society: Egypt from Cambyses to Constantine and Beyond.", - "authors": [ - "Janet Johnson." - ], - "series": "Studies in Ancient Oriental Civilization 51", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1992", - "isbn": "0918986842", - "extent": "Pp. xxvii + 514; 10 figures; 32 plates; 5 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc51.pdf" - ] - }, - { - "title": "Subsistence, Trade, and Social Change in Early Bronze Age Palestine.", - "authors": [ - "D. L. Esse." - ], - "series": "Studies in Ancient Oriental Civilization 50", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "0918986664", - "extent": "Pp. xvii + 219, 36 figures, 9 plates, 6 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc50.pdf" - ] - }, - { - "title": "A Critical Study of the Temple Scroll from Qumran Cave 11.", - "authors": [ - "M. O. Wise." - ], - "series": "Studies in Ancient Oriental Civilization 49", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "091898663X", - "extent": "Pp. xvii + 292, 8 figures, 2 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc49.pdf" - ] - }, - { - "title": "Egyptian Phyles in the Old Kingdom: The Evolution of a System of Social Organization.", - "authors": [ - "Ann Macy Roth. D. L. Esse." - ], - "series": "Studies in Ancient Oriental Civilization 48", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "", - "extent": "Pp. xxvi + 243, 27 figures, 1 appendix, 5 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc48.pdf" - ] - }, - { - "title": "Essays in Ancient Civilization Presented to Helene J. Kantor.", - "authors": [ - "A. Leonard", - "Jr.B. B. Williams," - ], - "series": "Studies in Ancient Oriental Civilization 47", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1989", - "isbn": "0918986575", - "extent": "Pp. xxxix + 393, 52 figures, 72 plates, 6 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc47.pdf" - ] - }, - { - "title": "The Organization of Power: Aspects of Bureaucracy in the Ancient Near East.", - "authors": [ - "McGuire GibsonRobert D. Biggs", - " (Second Edition with Corrections)." - ], - "series": "Studies in Ancient Oriental Civilization 46", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1991", - "isbn": "", - "extent": "Pp. xii + 168; 15 figures, 10 plates, 1 table, 3 appendices", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc46.pdf" - ] - }, - { - "title": "Thus Wrote ‘Onchsheshonqy — An Introductory Grammar of Demotic (Third Edition)", - "authors": [ - ". Janet H. Johnson. Third edition," - ], - "series": "Studies in Ancient Oriental Civilization 45", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1991", - "isbn": "0–918986–76–1", - "extent": "Pp. vii + 126 (paperback, 8 x 10 inches)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc45.pdf" - ] - }, - { - "title": "Nippur Neighborhoods.", - "authors": [ - "E. C. Stone." - ], - "series": "Studies in Ancient Oriental Civilization 44", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1987", - "isbn": "0918986508", - "extent": "Pp. xviii + 294, 7 figures, 94 plates, 24 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc44.pdf" - ] - }, - { - "title": "A Neolithic Village at Tell El Kowm in the Syrian Desert.", - "authors": [ - "R. Dornemann." - ], - "series": "Studies in Ancient Oriental Civilization 43", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1986", - "isbn": "0918986451", - "extent": "Pp. xii + 89, 46 plates, 4 serial lists, 12 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc43.pdf" - ] - }, - { - "title": "The Road to Kadesh: A Historical Interpretation of the Battle Reliefs of King Sety I at Karnak.", - "authors": [ - "W. J. Murnane." - ], - "series": "Studies in Ancient Oriental Civilization 42", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "0918986672", - "extent": "Pp. xvi + 157, 3 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc42_2ed.pdf" - ] - }, - { - "title": "Ecology and Empire: The Structure of the Urartian State.", - "authors": [ - "Paul E. Zimansky." - ], - "series": "Studies in Ancient Oriental Civilization 41", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1985", - "extent": "Pp. xv + 141; 15 figures, 15 plates, 17 tables", - "isbn": "", - "url": [] - }, - { - "title": "Ancient Egyptian Coregencies.", - "authors": [ - "William J. Murnane." - ], - "series": "Studies in Ancient Oriental Civilization 40", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1977", - "isbn": "", - "extent": "Pp. xviii + 272; 8 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc40.pdf" - ] - }, - { - "title": "Studies in Honor of George R. Hughes, January 12, 1977.", - "authors": [ - "J. H. JohnsonE. F. Wente," - ], - "series": "Studies in Ancient Oriental Civilization 39", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1976", - "isbn": "091898601X", - "extent": "Paperbound 6.75 x 9.5 in / 17 x 24 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc39.pdf" - ] - }, - { - "title": "The Demotic Verbal System", - "authors": [ - ". Janet H. Johnson. Second printing", - "with corrections," - ], - "series": "Studies in Ancient Oriental Civilization 38", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1976", - "isbn": "", - "extent": "Pp. xv + 344; 51 tables (paperback, 6.5 x 9.5 inches)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/SAOC38.pdf" - ] - }, - { - "title": "The Book of the Dead or Going Forth by Day: Ideas of the Ancient Egyptians Concerning the Hereafter as Expressed in Their Own Terms.", - "authors": [ - "Translated by Thomas George Allen." - ], - "series": "Studies in Ancient Oriental Civilization 37", - "publisherLocation": "Chicago", - "publisher": [ - "The Unversity of Chicago Press" - ], - "publicationDate": "1974", - "isbn": "2264124102", - "extent": "Pp. x + 306", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc37.pdf" - ] - }, - { - "title": "The Hilly Flanks and Beyond: Essays on the Prehistory of Southwestern Asia Presented to Robert J. Braidwood, November 15, 1982.", - "authors": [ - "T. Cuyler Young", - "Jr.", - "Philip E. L. Smith,Peder Mortensen," - ], - "series": "Studies in Ancient Oriental Civilization 36", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1983", - "isbn": "", - "extent": "Pp. xiii + 374; frontispiece, 97 figures, 36 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc36.pdf", - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc36_erratum.pdf" - ] - }, - { - "title": "Studies in Honor of John A. Wilson.", - "authors": [ - "E. B. Hauser," - ], - "series": "Studies in Ancient Oriental Civilization 35", - "publisherLocation": "Chicago", - "publisher": [ - "The Unversity of Chicago Press" - ], - "publicationDate": "1969", - "isbn": "0226624080", - "extent": "Pp. ix + 124, 8 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc35.pdf" - ] - }, - { - "title": "A Study of the Ba Concept in Ancient Egyptian Texts.", - "authors": [ - "Louis V. Zabkar." - ], - "series": "Studies in Ancient Oriental Civilization 34", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1968", - "isbn": "", - "extent": "Pp. xiv + 163; 6 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc34.pdf" - ] - }, - { - "title": "Late Ramesside Letters.", - "authors": [ - "Edward F. Wente." - ], - "series": "Studies in Ancient Oriental Civilization 33", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1967", - "isbn": "", - "extent": "Pp. xii + 85", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc33.pdf" - ] - }, - { - "title": "Patterns in the Early Poetry of Israel.", - "authors": [ - "Stanley Gevirtz." - ], - "series": "Studies in Ancient Oriental Civilization 32", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1963", - "isbn": "", - "extent": "Pp. x + 97", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc32.pdf" - ] - }, - { - "title": "Prehistoric Investigations in Iraqi Kurdistan.", - "authors": [ - "R. J. BraidwoodB. Howe." - ], - "series": "Studies in Ancient Oriental Civilization 31", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1960", - "isbn": "0226624048", - "extent": "Pp. xxviii + 184, 29 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc31.pdf" - ] - }, - { - "title": "Wall Scenes from the Mortuary Chapel of the Mayor Paser at Medinet Habu.", - "authors": [ - "Siegfried Schott. Translated by Elizabeth B. Hauser." - ], - "series": "Studies in Ancient Oriental Civilization 30", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "", - "extent": "Pp. xi + 21; 9 figures, 3 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc30.pdf" - ] - }, - { - "title": "Saite Demotic Land Leases.", - "authors": [ - "George Robert Hughes." - ], - "series": "Studies in Ancient Oriental Civilization 28", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1952", - "isbn": "", - "extent": "Pp. x + 111; 3 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc28.pdf" - ] - }, - { - "title": "Occurrences of Pyramid Texts with Cross Indexes of These and Other Egyptian Mortuary Texts.", - "authors": [ - "Thomas George Allen." - ], - "series": "Studies in Ancient Oriental Civilization 27", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1950", - "isbn": "", - "extent": "Pp. vii + 149", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc27.pdf" - ] - }, - { - "title": "The Calendars of Ancient Egypt.", - "authors": [ - "Richard A. Parker." - ], - "series": "Studies in Ancient Oriental Civilization 26", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1950", - "isbn": "", - "extent": "Pp. xiii + 83; 21 figures, 6 plates, 8 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc26.pdf" - ] - }, - { - "title": "The Comparative Archeology of Early Mesopotamia.", - "authors": [ - "A. L. Perkins. Originally published in (th printing", - ")." - ], - "series": "Studies in Ancient Oriental Civilization 25", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1949", - "isbn": "", - "extent": "Pp. xix + 200; 20 figures, 1 map, 3 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc25.pdf" - ] - }, - { - "title": "Babylonian Chronology, 626 B.C. – A.D. 45.", - "authors": [ - "Richard A. ParkerWaldo H. Dubberstein." - ], - "series": "Studies in Ancient Oriental Civilization 24", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "Pp. xiii + 46; 1 plate; 18 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc24.pdf" - ] - }, - { - "title": "The Comparative Stratigraphy of Early Iran.", - "authors": [ - "Donald E. McCown." - ], - "series": "Studies in Ancient Oriental Civilization 23", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1957", - "isbn": "", - "extent": "Pp. xvi + 65; 18 figures, 2 tables, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc23.pdf" - ] - }, - { - "title": "Hurrians and Subarians.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Studies in Ancient Oriental Civilization 22", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1944", - "isbn": "", - "extent": "Pp. xv + 128; 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc22.pdf" - ] - }, - { - "title": "Hittite Hieroglyphs 3.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Studies in Ancient Oriental Civilization 21", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "Pp. xix + 75; frontispiece", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc21.pdf" - ] - }, - { - "title": "Animal Remains from Tell Asmar", - "authors": [ - "Max Hilzheimer. Translated by Adolph A. Brux." - ], - "series": "Studies in Ancient Oriental Civilization 20", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1941", - "isbn": "", - "extent": "Pp. xiii + 52; 20 illustration; 8 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc20.pdf" - ] - }, - { - "title": "The Coregency of Ramses II with Seti I and the Date of the Great Hypostyle Hall at Karnak.", - "authors": [ - "Keith C. Seele." - ], - "series": "Studies in Ancient Oriental Civilization 19", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "", - "extent": "Pp. xiii + 95; 23 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc19.pdf" - ] - }, - { - "title": "The Hyksos Reconsidered.", - "authors": [ - "Robert M. Engberg." - ], - "series": "Studies in Ancient Oriental Civilization 18", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xi + 50", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc18.pdf" - ] - }, - { - "title": "Notes on the Megiddo Pottery of Strata VI-XX.", - "authors": [ - "Geoffrey M. Shipton." - ], - "series": "Studies in Ancient Oriental Civilization 17", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1939", - "isbn": "", - "extent": "Pp. xiv + 49; 1 figure, 20 plates, 1 chart", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc17.pdf" - ] - }, - { - "title": "The Monasteries of the Fayyum. By Nabia Abbott. Originally published in 1937.", - "authors": [ - "" - ], - "series": "Studies in Ancient Oriental Civilization 16", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1937", - "isbn": "", - "extent": "Pp. 66; 3 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc16.pdf" - ] - }, - { - "title": "The Kurrah Papyri from Aphrodito in the Oriental Institute.", - "authors": [ - "Nabia Abbott." - ], - "series": "Studies in Ancient Oriental Civilization 15", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xviii + 101; 4 plates, 2 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc15.pdf" - ] - }, - { - "title": "Hittite Hieroglyphs 2.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Studies in Ancient Oriental Civilization 14", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xx + 37; 2 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc14.pdf" - ] - }, - { - "title": "The Oriental Origin of Hellenistic Kingship.", - "authors": [ - "Calvin W. McEwan." - ], - "series": "Studies in Ancient Oriental Civilization 13", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. xii + 34", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc13.pdf" - ] - }, - { - "title": "Historical Records of Ramses III: The Texts in Medinet Habu Volumes 1 and 2.", - "authors": [ - "Translated With Explanatory Notes. By William F. EdgertonJohn A. Wilson." - ], - "series": "Studies in Ancient Oriental Civilization 12", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xv + 159", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc12.pdf" - ] - }, - { - "title": "Epiphanius’ Treatise on Weights and Measures: The Syriac Version.", - "authors": [ - "James Elmer Dean", - " With a Foreword by Martin Sprengling." - ], - "series": "Studies in Ancient Oriental Civilization 11", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. xv + 145", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc11.pdf" - ] - }, - { - "title": "Notes on the Chalcolithic and Early Bronze Age Pottery of Megiddo.", - "authors": [ - "Robert M. EngbergGeoffrey M. Shipton." - ], - "series": "Studies in Ancient Oriental Civilization 10", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. xiii + 91; 25 figures; 1 chart, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc10.pdf" - ] - }, - { - "title": "Die Pakhy-Sprache.", - "authors": [ - "Julius von Meszaros." - ], - "series": "Studies in Ancient Oriental Civilization 9", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1934", - "isbn": "", - "extent": "Pp. viii + 402; 1 figure, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc9.pdf" - ] - }, - { - "title": "The Thutmosid Succession.", - "authors": [ - "William F. Edgerton." - ], - "series": "Studies in Ancient Oriental Civilization 8", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "Pp. ix + 43; 5 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc8.pdf" - ] - }, - { - "title": "Plano-Convex Bricks and the Methods of Their Employment; II. The Treatment of Clay Tablets in the Field.", - "authors": [ - "Pinhas Delougaz." - ], - "series": "Studies in Ancient Oriental Civilization 7", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "Pp. xi + 57; 40 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc7.pdf" - ] - }, - { - "title": "Kitab al-Zahrah: The Book of the Flower. Composed by Abu Bakr Muhammad Ibn Abi Sulaiman Dawud Al-Isfahani.", - "authors": [ - "A. R. Nykl", - " In collaboration with Ibrahim Tuqan." - ], - "series": "Studies in Ancient Oriental Civilization 6", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. 416; 3 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc6.pdf" - ] - }, - { - "title": "A New Inscription of Xerxes from Persepolis", - "authors": [ - "Ernst E. Herzfeld." - ], - "series": "Studies in Ancient Oriental Civilization 5", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. viii + 14; 5 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc5.pdf" - ] - }, - { - "title": "Archeology and the Sumerian Problem.", - "authors": [ - "Henri Frankfort." - ], - "series": "Studies in Ancient Oriental Civilization 4", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. xi + 72; frontispiece; 10 figures; 3 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc4.pdf" - ] - }, - { - "title": "Die Hethitische Bilderschrift.", - "authors": [ - "Emil O. Forrer." - ], - "series": "Studies in Ancient Oriental Civilization 3", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1932", - "isbn": "", - "extent": "Pp. ix + 62; 45 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc3.pdf" - ] - }, - { - "title": "Hittite Hieroglyphs 1.", - "authors": [ - "Ignace J. Gelb." - ], - "series": "Studies in Ancient Oriental Civilization 2", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. xxi + 88; frontispiece", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc2.pdf" - ] - }, - { - "title": "Notes on Egyptian Marriage Chiefly in the Ptolemaic Period.", - "authors": [ - "William F. Edgerton." - ], - "series": "Studies in Ancient Oriental Civilization 1", - "publisherLocation": "Chicago", - "publisher": [ - "The University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. x + 25; 1 illustration", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc1.pdf" - ] - }, - { - "title": "Lost Egypt", - "authors": [ - "The Epigraphic Survey of the Oriental Institute of the University of Chicago" - ], - "series": "Volume I", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1992", - "isbn": "0918986885", - "extent": "pp. i-viii + 10 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lost1.pdf" - ] - }, - { - "title": "Lost Egypt", - "authors": [ - "The Epigraphic Survey of the Oriental Institute of the University of Chicago" - ], - "series": "Volume II", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1992", - "isbn": "0918986893", - "extent": "pp. i-viii + 10 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lost2.pdf" - ] - }, - { - "title": "Lost Egypt", - "authors": [ - "The Epigraphic Survey of the Oriental Institute of the University of Chicago" - ], - "series": "Volume III", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "1992", - "isbn": "0918986907", - "extent": "pp. i-viii + 10 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lost3.pdf" - ] - }, - { - "title": "The Materiality of Greek and Roman Curse Tablets: Technological Advances.", - "authors": [ - "Sofía Torallas TovarRaquel Martín Hernández," - ], - "series": "Oriental Institute Miscellaneous Publications", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2022", - "isbn": "9781614910824", - "extent": "Pp. viii + 77; 59 figures, 4 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/Greek-Roman-Curse-Tablet.pdf" - ] - }, - { - "title": "Pioneer to the Past: The Story of James Henry Breasted, Archaeologist, Told by His Son Charles Breasted.", - "authors": [ - "Charles Breast Reprint of the Charles Scribner's Sons edition with new foreword", - "photographs,maps. Published in" - ], - "series": "Pioneer to the Past: The Story of James Henry Breasted, Archaeologist, Told by His Son Charles Breasted.", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "2009", - "isbn": "9781885923677", - "extent": "Pp. ix + 436; 16 black-and-white photo plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/Pioneer2020.pdf" - ] - }, - { - "title": "Discovering New Pasts: The OI at 100", - "authors": [ - ". Theo van den Hout," - ], - "series": "Discovering New Pasts: The OI at 100", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute Miscellaneous Publications" - ], - "publicationDate": "", - "isbn": "9781614910497", - "extent": "pp. xxiv + 428; 584 images(most color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/miscdiscoveringnewpasts.pdf" - ] - }, - { - "title": "100 Highlights of the Collections of the Oriental Institute Museum", - "authors": [ - ". Jean M. Evans", - "Jack Green,Emily Teeter," - ], - "series": "100 Highlights of the Collections of the Oriental Institute Museum", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute Miscellaneous Publications" - ], - "publicationDate": "", - "isbn": "9781614910480", - "extent": "152 pp.; 140 illustrations (most in color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/MISC_100museumhighlights.pdf" - ] - }, - { - "title": "Preserving the Cultural Heritage of Afghanistan", - "authors": [ - ". Gil J. Stein", - "Michael T. Fisher", - "Abdul Hafiz Latify", - "Najibullah Popal,Nancy Hatch Dupree," - ], - "series": "Preserving the Cultural Heritage of Afghanistan: Proceedings of the International Conference Held at Kabul University, November 2014", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute Miscellaneous Publications" - ], - "publicationDate": "", - "isbn": "9781614910411", - "extent": "Pp. xvi + 168 pages English + 135 page Dari; 1 map, 113 figures in color", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/preserving-cultural-heritage-afghanistan.pdf" - ] - }, - { - "title": "Highlights of the Collections of the Oriental Institute Museum", - "authors": [ - ". Jean M. Evans", - "Jack Green,Emily Teeter," - ], - "series": "Highlights of the Collections of the Oriental Institute", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute Miscellaneous Publications" - ], - "publicationDate": "", - "isbn": "9781614910053", - "extent": "152 pp.; 140 illustrations (most in color)", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-highlights.pdf" - ] - }, - { - "title": "Nimrud: The Queens' Tombs", - "authors": [ - ". Muzahim Mahmoud Hussein. Translationinitial editing by Mark Altaweel", - "additional editingnotes by McGuire Gibson." - ], - "series": "Nimrud: The Queens’ Tombs", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute Miscellaneous Publications" - ], - "publicationDate": "", - "isbn": "9781614910220", - "extent": "Pp. xxvi + 186; 220 plates, most in color", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-2016-Nimrud-Queens-Tombs-web.pdf" - ] - }, - { - "title": "The Mosaics of Khirbet el-Mafjar: Hisham's Palace.", - "authors": [ - "Hamdan TahaDonald Whitcomb." - ], - "series": "Oriental Institute Miscellaneous Publication", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute; Ramallah: Palestinian Department of Antiquities and Cultural Heritage" - ], - "publicationDate": "2015", - "isbn": "9781614910046", - "extent": "Pp. 128; 156 color illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-Hisham-mosaics.pdf" - ] - }, - { - "title": "Digital Epigraphy", - "authors": [ - ". Krisztián Vértesthe Epigraphic Survey." - ], - "series": "Miscellaneous. Digital Epigraphy", - "publisherLocation": "Chicago", - "publisher": [ - "By Krisztián Vértes and the Epigraphic Survey" - ], - "publicationDate": "", - "isbn": "9781614910213Gratis", - "extent": "By Krisztián Vértes and the Epigraphic Survey", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Digital-Epigraphy.pdf", - "https://isac.uchicago.edu/https://itunes.apple.com/us/book/digital-epigraphy/id907434023?mt=13&ls=1" - ] - }, - { - "title": "Mesopotamian Pottery: A Guide to the Babylonian Tradition in the Second Millennium B.C.", - "authors": [ - "James A. ArmstrongHermann Gasche", - "with contributions by Steven W. Cole", - "Abraham Van As,Loe Jacobs. Mesopotamian HistoryEnvironment II", - "Memoirs IV." - ], - "series": "Mesopotamian Pottery", - "publisherLocation": "Chicago", - "publisher": [ - "Ghent and A Joint Publication of the University of Ghent and the Oriental Institute of the University of Chicago" - ], - "publicationDate": "2014", - "isbn": "Pp. xix + 102; 48 figures, 136 plates, 9 tables", - "extent": "Hardback, 24 x 34.5 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Mesopotamian_Pottery.pdf" - ] - }, - { - "title": "Islamic Bindings & Bookmaking.", - "authors": [ - "A Catalogue of an Exhibition in the Oriental Institute Museum", - "University of Chicago", - "May -August ", - " Gulnar Bosch", - "John Carswell,Guy Petherbridge." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1981", - "isbn": "", - "extent": "Pp. xii + 235; 91 B&W and 14 color illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/IslamicBindings.pdf" - ] - }, - { - "title": "The Babylonian Genesis: The Story of Creation.", - "authors": [ - "Alexander Heidel." - ], - "series": "The Babylonian Genesis: The Story of Creation", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1951", - "isbn": "", - "extent": "Pp. ix + 153; 17 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_genesis.pdf" - ] - }, - { - "title": "The Gilgamesh Epic and Old Testament Parallels.", - "authors": [ - "Alexander Heidel." - ], - "series": "The Gilgamesh Epic and Old Testament Parallels", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1949", - "isbn": "", - "extent": "Pp. ix + 269", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_gilgamesh.pdf" - ] - }, - { - "title": "Egypt through the Stereoscope: A Journey through the Land of the Pharaohs.", - "authors": [ - "James Henry Breast Electronic publication in" - ], - "series": "Egypt through the Stereoscope: A Journey through the Land of the Pharaohs", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "2010", - "isbn": "", - "extent": "Pp. xi + 187; 100 view cards, 20 maps and plans", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/stereoscope.pdf" - ] - }, - { - "title": "Settlement and Society: Essays Dedicated to Robert McCormick Adams.", - "authors": [ - "Elizabeth C. Stone", - " Joint Publication with the Cotsen Institute of Archaeology", - "University of California", - "Los Angeles." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "Joint Publication with the Cotsen Institute of Archaeology, University of California, Los Angeles" - ], - "publicationDate": "2007", - "extent": "Hardback., Paperback.", - "isbn": "", - "url": [] - }, - { - "title": "An Adventure of Great Dimension: The Launching of the Chicago Assyrian Dictionary.", - "authors": [ - "Erica Reiner." - ], - "series": "An Adventure of Great Dimension: The Launching of the Chicago Assyrian Dictionary", - "publisherLocation": "Chicago", - "publisher": [ - "Transactions of the American Philosophical Society Volume" - ], - "publicationDate": "92", - "isbn": "", - "extent": "Philadelphia: American Philosophical Society, 2002", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Adventure_of_Great_Dimension.pdf" - ] - }, - { - "title": "Letters from Egypt and Iraq, 1954.", - "authors": [ - "Margaret Bell Cameron." - ], - "series": "Letters from Egypt and Iraq, 1954", - "publisherLocation": "Chicago", - "publisher": [ - "The Development Office of the Oriental Institute of the University of Chicago" - ], - "publicationDate": "2001", - "isbn": "", - "extent": "Pp. 72; 12 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cameron_letters.pdf" - ] - }, - { - "title": "Changing Watercourses in Babylonia: Towards a Reconstruction of the Ancient Environment in Lower Mesopotamia Volume 1.", - "authors": [ - "Hermann GascheMichel Tanret," - ], - "series": "Mesopotamian History and Environment Series 2, Memoirs 5", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. x +" - ], - "publicationDate": "245", - "isbn": "", - "extent": "8.5 x 11.0 in.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/changing_watercourses.pdf" - ] - }, - { - "title": "Dating the Fall of Babylon: A Reappraisal of Second-Millennium Chronology.", - "authors": [ - "J. A. Armstrong", - "S. W. Cole,V. G. Gurzadyan." - ], - "series": "Mesopotamian History and Environment Series 2, Memoirs 4", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. vii +" - ], - "publicationDate": "104", - "isbn": "", - "extent": "8.5 x 11.0 in.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/fall_of_babylon.pdf" - ] - }, - { - "title": "Ayla: Art and Industry in the Islamic Port of Aqaba.", - "authors": [ - "D. Whitcomb." - ], - "series": "Ayla: Art and Industry in the Islamic Port of Aqaba", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1994", - "isbn": "0918986974", - "extent": "Pp. 32; 37 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_ayla.pdf" - ] - }, - { - "title": "Letters from Turkey, 1939–1946.", - "authors": [ - "G. Maynard." - ], - "series": "Letters from Turkey, 1939-1946", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1994", - "isbn": "0918986966", - "extent": "Pp. viii + 298, 16 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_letters_turkey.pdf" - ] - }, - { - "title": "Uch Tepe II: Technical Reports.", - "authors": [ - "McG. Gibson," - ], - "series": "Uch Tepe II: Technical Reports", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "0918986613", - "extent": "Pp. 140, 69 figures, 5 plates, 38 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-1990-uch-tepe-2.pdf" - ] - }, - { - "title": "The Research Archives of the Oriental Institute: Introduction and Guide.", - "authors": [ - "The Oriental Institute." - ], - "series": "The Research Archives of the Oriental Institute: Introduction and Guide", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1990", - "isbn": "", - "extent": "Pp. 9; 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/research_archives_guide_1990.pdf" - ] - }, - { - "title": "Aqaba: \"Port of Palestine on the China Sea.\"", - "authors": [ - "D. Whitcomb." - ], - "series": "Aqaba: “Port of Palestine on the China Sea”", - "publisherLocation": "Chicago", - "publisher": [ - "Pp." - ], - "publicationDate": "28", - "isbn": "", - "extent": "Paperbound 5.25 x 7.75 in / 14 x 20 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_aqaba.pdf" - ] - }, - { - "title": "Egyptology at the Oriental Institute of the University of Chicago.", - "authors": [ - "The Oriental Institute." - ], - "series": "Egyptology at the Oriental Institute of the University of Chicago", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute of the University of Chicago" - ], - "publicationDate": "1983", - "isbn": "", - "extent": "Pp. 32; 39 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/egyptology.pdf" - ] - }, - { - "title": "Feasts for Pharaohs & Kings: A Cookbook by the Oriental Institute Museum, The University of Chicago.", - "authors": [ - "Anne S. Blomstrom," - ], - "series": "Chicago: The Oriental Institute Museum, The University of Chicago, 1983", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. xii +" - ], - "publicationDate": "268", - "isbn": "", - "extent": "5.5 x 8.5 in.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/feasts.pdf" - ] - }, - { - "title": "Quseir al-Qadim 1980: Preliminary Report.", - "authors": [ - "Donald S. WhitcombJanet H. Johnson." - ], - "series": "Quseir al-Qadim 1980: Preliminary Report", - "publisherLocation": "Chicago", - "publisher": [ - "American Research Center in Egypt Reports" - ], - "publicationDate": "7", - "isbn": "", - "extent": "Malibu: Undena Publications, 1982", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/quseir_1980.pdf" - ] - }, - { - "title": "A Guide to the Oriental Institute Museum.", - "authors": [ - "Leon Marfoe. Peter T. DanielsValerie M. Fargo," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1982", - "isbn": "", - "extent": "Pp. xiv + 139; 68 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Guide_to_OI_Museum_1982.pdf" - ] - }, - { - "title": "Uch Tepe I: Tell Razuk, Tell Ahmed Al-Mughir, Tell Ajamat.", - "authors": [ - "McG. Gibson," - ], - "series": "Uch Tepe I: Tell Razuk, Tell Ahmed Al-Mughir, Tell Ajamat", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1981", - "isbn": "9780918986344", - "extent": "Pp. xi + 197, 9 figures, 8 level/locus summaries, 116 plates, 27 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/uch_tepe1.pdf" - ] - }, - { - "title": "Heartland of Cities: Surveys of Ancient Settlement and Land Use on the Central Floodplain of the Euphrates.", - "authors": [ - "Robert McC. Adams." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1981", - "isbn": "", - "extent": "Pp. xx + 162; 53 figures, 26 illustrations, 22 tables, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/heartland_of_cities.pdf" - ] - }, - { - "title": "United with Eternity: A Concise Guide to the Monuments of Medinet Habu.", - "authors": [ - "William J. Murnane." - ], - "series": "United with Eternity: A Concise Guide to the Monuments of Medinet Habu", - "publisherLocation": "Chicago", - "publisher": [ - "Chicago and Cairo: The Oriental Institute of the University of Chicago and the American University in Cairo Press" - ], - "publicationDate": "1980", - "isbn": "0918986281", - "extent": "Pp. vi + 90; 71 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/united.pdf" - ] - }, - { - "title": "Prehistoric Research in Southeastern Anatolia — Guneydogu Anadolu Tarihoncesi Arastirmalari.", - "authors": [ - "Halet CambelRobert J. Braidwood." - ], - "series": "Prehistoric Research in Southeastern Anatolia 1", - "publisherLocation": "Chicago", - "publisher": [ - "Istanbul: Edebiyat Fakultesi Basimevi" - ], - "publicationDate": "1980", - "isbn": "", - "extent": "Pp. xv + 327; 49 illustrations; 25 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/prehistoric_research.pdf" - ] - }, - { - "title": "Remembrances of the Near East: The Photographs of Bonfils, 1867–1907.", - "authors": [ - "The Bonfils Firm." - ], - "series": "Remembrances of the Near East: The Photographs of Bonfils, 1867-1907", - "publisherLocation": "Chicago", - "publisher": [ - "Cambridge: The Harvard Semitic Museum International Museum of Photography at George Eastmann House and the Oriental Institute of the University of Chicago" - ], - "publicationDate": "1980", - "isbn": "", - "extent": "Pp. 23; 13 B&W illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/remembrances_near_east.pdf" - ] - }, - { - "title": "Quseir Al-Qadim 1978: Preliminary Report.", - "authors": [ - "D. S. WhitcombJ. H. Johnson." - ], - "series": "Quseir Al-Qadim 1978: Preliminary Report", - "publisherLocation": "Chicago", - "publisher": [ - "Cairo: Nafeh Press" - ], - "publicationDate": "1979", - "isbn": "9780936770017", - "extent": "Pp. x + 352, 57 figures, 89 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/quseir_1978.pdf" - ] - }, - { - "title": "Ancient Textiles from Nubia: Meroitic, X-Group, and Christian Fabrics from Ballana and Qustul.", - "authors": [ - "Christa C. Mayer ThurmanBruce Williams." - ], - "series": "Ancient Textiles from Nubia: Meroitic, X-Group, and Christian Fabrics from Ballana and Qustul", - "publisherLocation": "Chicago", - "publisher": [ - "The Art Institute of Chicago and the Oriental Institute" - ], - "publicationDate": "1979", - "isbn": "", - "extent": "Pp. 148; 170 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/textiles.pdf" - ] - }, - { - "title": "Early Hydraulic Civilization in Egypt: A Study in Cultural Ecology.", - "authors": [ - "Karl W. Butzer." - ], - "series": "Early Hydraulic Civilization in Egypt: A Study in Cultural Ecology", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. xv +" - ], - "publicationDate": "134", - "isbn": "", - "extent": "0-226-08635-6", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/early_hydraulic.pdf" - ] - }, - { - "title": "Old Babylonian Contracts From Nippur: Selected Texts From the University Museum University of Pennsylvania.", - "authors": [ - "Catalog by Elizabeth C. Stone. Photos by Paul E. Zimansky." - ], - "series": "Oriental Institute of the University of Chicago Microfiche Archives, Volume 1", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1976", - "isbn": "", - "extent": "Pp. x + 6; 70 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/old_babylonian_contracts.pdf" - ] - }, - { - "title": "John D. Rockefeller, Jr. Centenary Exhibition: A Productive Collaboration 1919–1935.", - "authors": [ - "" - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "The Oriental Institute" - ], - "publicationDate": "1974", - "isbn": "", - "extent": "Pp. 24; frontispiece, 3 figures, 1 table, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/rockefeller_centenary.pdf" - ] - }, - { - "title": "The Uruk Countryside: The Natural Setting of Urban Societies.", - "authors": [ - "Robert McC. AdamsHans J. Nissen." - ], - "series": "The Uruk Countryside: The Natural Setting of Urban Societies", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1972", - "isbn": "0226005003", - "extent": "Pp. x + 241; 83 figures, 2 chronological charts", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/uruk_countryside.pdf" - ] - }, - { - "title": "Letters From Mesopotamia: Official, Business, and Private Letters on Clay Tablets from Two Millennia.", - "authors": [ - "A. Leo Oppenheim." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1967", - "isbn": "", - "extent": "Pp. xii + 217; 16 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/misc_letters_from_mesopotamia.pdf" - ] - }, - { - "title": "Most Ancient Egypt.", - "authors": [ - "William C. Hayes." - ], - "series": "Most Ancient Egypt", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1965", - "isbn": "", - "extent": "Pp. xx + 160", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/most_ancient.pdf" - ] - }, - { - "title": "Land Behind Baghdad: A History of Settlement on the Diyala Plains.", - "authors": [ - "Robert McC. Adams." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1965", - "isbn": "", - "extent": "Pp. xvi + 187; frontispiece, 22 illustrations, 9 maps, 25 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/land_behind_baghdad.pdf" - ] - }, - { - "title": "Ancient Mesopotamia: Portrait of a Dead Civilization.", - "authors": [ - "A. Leo Oppenheim. Revised edition completed by Erica Reiner. Originally published in ; revised edition in" - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1964", - "isbn": "", - "extent": "Pp. xvi + 445; 15 plates, 3 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_mesopotamia.pdf" - ] - }, - { - "title": "Signs and Wonders upon Pharaoh: A History of American Egyptology.", - "authors": [ - "John A. Wilson." - ], - "series": "Signs and Wonders upon Pharaoh: A History of American Egyptology", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1964", - "isbn": "", - "extent": "Pp. xxv + 243; 32 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/signs.pdf" - ] - }, - { - "title": "Land Behind Baghdad: A History of Settlement on the Diyala Plains.", - "authors": [ - "Robert McC. Adams." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1965", - "isbn": "", - "extent": "Pp. xvi + 187; frontispiece, 22 illustrations, 9 maps, 25 tables", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/land_behind_baghdad.pdf" - ] - }, - { - "title": "Studies Presented to A. Leo Oppenheim, June 7, 1964.", - "authors": [ - "R. D. BiggsJ. A. Brinkman," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1964", - "isbn": "", - "extent": "Pp. vii + 200; 11 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oppenheim_studies.pdf" - ] - }, - { - "title": "Most Ancient Verse.", - "authors": [ - "Selectedtranslated by Thorkild JacobsenJohn A. Wilson." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1963", - "isbn": "", - "extent": "Pp. xii + 57", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/most_ancient_verse.pdf" - ] - }, - { - "title": "The Sumerians: Their History, Culture, and Character.", - "authors": [ - "Samuel Noah Kramer." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1963", - "isbn": "", - "extent": "Pp. xiv + 355; 23 plates, 6 figures, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sumerians.pdf" - ] - }, - { - "title": "City Invincible: A Symposium on Urbanization and Cultural Development in the Ancient Near East Held at the Oriental Institute of the University of Chicago, December 4–7, 1958.", - "authors": [ - "Carl H. Kraeling & Robert McC. Adams," - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1960", - "isbn": "", - "extent": "Pp. xiv + 448; frontispiece, 105 illustrations, 2 maps, 1 chart", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/city_invincible.pdf" - ] - }, - { - "title": "The Temple of King Sethos I at Abydos, Volume IV: The Second Hypostyle Hall.", - "authors": [ - "Copied by Amice M. Calverley", - "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." - ], - "series": "Sethos 4. The Temple of King Sethos I at Abydos, Volume IV: The Second Hypostyle Hall", - "publisherLocation": "Chicago", - "publisher": [ - "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" - ], - "publicationDate": "1958", - "isbn": "", - "extent": "Pp. xviii; 80 pls.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos4.pdf" - ] - }, - { - "title": "When Egypt Ruled the East.", - "authors": [ - "George SteindorffKeith C. Seele. Revised by Keith C. Seele. Originally published as second edition in" - ], - "series": "When Egypt Ruled the East", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "Pp. xvi + 288; 109 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/when_egypt.pdf" - ] - }, - { - "title": "The Culture of Ancient Egypt: An Interpretation of Ancient Egyptian Culture.", - "authors": [ - "John A. Wilson. Reprinted in" - ], - "series": "The Culture of Ancient Egypt: An Interpretation of Ancient Egyptian Culture", - "publisherLocation": "Chicago", - "publisher": [ - "Univeristy of Chicago Press" - ], - "publicationDate": "1951", - "extent": "Pp. xix + 332; 32 figures", - "isbn": "", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/burden.pdf" - ] - }, - { - "title": "Standard Operating Procedure for the Assyrian Dictionary.", - "authors": [ - "I. J. Gelb." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1954", - "isbn": "", - "extent": "Pp. 129", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_operating_procedures.pdf" - ] - }, - { - "title": "Third Century Iran: Sapor and Kartir.", - "authors": [ - "Martin Sprengling." - ], - "series": "Chicago: University of Chicago Press, 1953", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. vii +" - ], - "publicationDate": "114", - "isbn": "", - "extent": "8.50 x 11.00 in.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/3rd_century_iran.pdf" - ] - }, - { - "title": "Medieval Islam: A Study in Cultural Orientation.", - "authors": [ - "Gustave E. von Grunebaum." - ], - "series": "Miscellaneous publication; Oriental Institute Essays 3", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. viii +" - ], - "publicationDate": "378", - "isbn": "", - "extent": "5.5 x 9.00 in.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/medieval_islam.pdf" - ] - }, - { - "title": "A Study of Writing.", - "authors": [ - "I. J. Gelb." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1952", - "isbn": "", - "extent": "Pp. xix + 319; 95 figures", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/study_writng.pdf" - ] - }, - { - "title": "The Burden of Egypt: An Interpretation of Ancient Egyptian Culture.", - "authors": [ - "John A. Wilson." - ], - "series": "The Culture of Ancient Egypt: An Interpretation of Ancient Egyptian Culture", - "publisherLocation": "Chicago", - "publisher": [ - "Univeristy of Chicago Press" - ], - "publicationDate": "1951", - "extent": "Pp. xix + 332; 32 figures", - "isbn": "", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/burden.pdf" - ] - }, - { - "title": "Reliefs and Inscriptions from the Tomb of Per-haps: An Oriental Institute Holiday Card.", - "authors": [ - "Early s." - ], - "series": "Reliefs and Inscriptions from the Tomb of Per-Haps: An Oriental Institute Holiday Card", - "publisherLocation": "Chicago", - "publisher": [], - "publicationDate": "", - "isbn": "", - "extent": "", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-tomb-of-Per-haps.pdf" - ] - }, - { - "title": "Kingship and the Gods: A Study of Ancient Near Eastern Religion as the Integration of Society and Nature.", - "authors": [ - "Henri Frankfort." - ], - "series": "Kingship and the Gods: A Study of Ancient Near Eastern Religion of Society and Nature", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1948", - "isbn": "", - "extent": "Pp. xxv + 444; 52 illustrations", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/kingship.pdf" - ] - }, - { - "title": "History of the Persian Empire.", - "authors": [ - "Albert Ten Eyck Olmstead." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1948", - "isbn": "", - "extent": "Pp. xxxii + 558; frontispiece; 10 maps; 70 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/history_persian_empire.pdf" - ] - }, - { - "title": "The Intellectual Adventure of Ancient Man: An Essay on Speculative Thought in the Ancient Near East.", - "authors": [ - "Henri Frankfort", - "H. A. Frankfort", - "John A. Wilson", - "Thorkild Jacobsen,William A. Irwin." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1946", - "isbn": "", - "extent": "Pp. vii + 401", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/intellectual_adventure.pdf" - ] - }, - { - "title": "Two Queens of Baghdad: Mother and Wife of Harun al-Rashid.", - "authors": [ - "Nabia Abbott." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1946", - "isbn": "", - "extent": "Pp. ix + 277; frontispiece, 1 map, 1 table", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/two_queens_baghdad.pdf" - ] - }, - { - "title": "The Problem of Ezekiel: An Inductive Study.", - "authors": [ - "William A. Irwin." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1943", - "isbn": "", - "extent": "Pp. xx + 344", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/problem_ezekiel.pdf" - ] - }, - { - "title": "Aishah: The Beloved of Mohammed.", - "authors": [ - "Nabia Abbott." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "Pp. xiii + 230; frontispiece; 1 map, 1 genealogical chart", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/aishah.pdf" - ] - }, - { - "title": "The Rayy Expedition.", - "authors": [ - "Erich F. Schmidt." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago. The Oriental Institute. Aerial Survey Expedition" - ], - "publicationDate": "1942", - "isbn": "", - "extent": "24 mounted ill.; 52 x 39 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/rayy_expedition.pdf" - ] - }, - { - "title": "The Expedition to Luristan.", - "authors": [ - "Erich F. Schmidt." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1941", - "isbn": "", - "extent": "17 mounted ill.; 52 x 38 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/expedition_to_luristan.pdf" - ] - }, - { - "title": "The Persepolis Expedition.", - "authors": [ - "Erich F. Schmidt." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago. The Oriental Institute. Aerial Survey Expedition" - ], - "publicationDate": "1941", - "isbn": "", - "extent": "17 mounted ill.; 52 x 38 cm", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/persepolis_expedition.pdf" - ] - }, - { - "title": "Flights Over Ancient Cities of Iran.", - "authors": [ - "Erich F. Schmidt." - ], - "series": "Special Publication of the Oriental Institute of the University of Chicago", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1940", - "isbn": "0918986966", - "extent": "Pp. xxii + 104; 119 plates; 6 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/flights_over_iran.pdf" - ] - }, - { - "title": "A Political History of Parthia.", - "authors": [ - "Neilson C. Debevoise." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xliii + 303; frontispiece [Coin of King Mithradates II]; 1 map [The Near and Middle East in Parthian Times]", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/political_history_parthia.pdf" - ] - }, - { - "title": "The Temple of King Sethos I at Abydos, Volume III: The Osiris Complex.", - "authors": [ - "Copied by Amice M. Calverley", - "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." - ], - "series": "Sethos 3. The Temple of King Sethos I at Abydos, Volume III: The Osiris Complex", - "publisherLocation": "Chicago", - "publisher": [ - "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xi; 65 pls.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos3.pdf" - ] - }, - { - "title": "The History of Early Iran.", - "authors": [ - "George G. Cameron." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xvi + 260; 5 tables; 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/history_early_iran.pdf" - ] - }, - { - "title": "They Wrote on Clay: The Babylonian Tablets Speak Today.", - "authors": [ - "By Edward Chiera. Edited by George G. Cameron." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1938", - "isbn": "", - "extent": "Pp. xv + 235; frontispiece, 105 illustrations, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/they_wrote_on-clay.pdf" - ] - }, - { - "title": "Syrian Expedition: The Oriental Institute of the University of Chicago. The Oriental Institute.", - "authors": [ - "" - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "Oriental Institute Bulletin" - ], - "publicationDate": "1", - "isbn": "", - "extent": "Chicago: University of Chicago Press, 1937", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/syrian_expedition.pdf" - ] - }, - { - "title": "Ancient Egyptian Paintings Selected, Copied, and Described. Volume III: Descriptive Text.", - "authors": [ - "Nina M. Davies", - "with the editorial assistance of Alan H. Gardiner." - ], - "series": "Ancient Egyptian Paintings Selected, Copied, and Described Volume III: Descriptive Text", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. xlviii + 209", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/paintings3.pdf" - ] - }, - { - "title": "Ancient Egyptian Paintings Selected, Copied, and Described. Volume II: Plates LIII–CIV.", - "authors": [ - "Nina M. Davies", - "with the editorial assistance of Alan H. Gardiner." - ], - "series": "Ancient Egyptian Paintings, Volume II: Plates LIII–CIV", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. vi + 52 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/paintings2.pdf" - ] - }, - { - "title": "Ancient Egyptian Paintings Selected, Copied, and Described. Volume I: Plates I–LII.", - "authors": [ - "Nina M. Davies", - "with the editorial assistance of Alan H. Gardiner." - ], - "series": "Ancient Egyptian Paintings, Volume I: Plates I–LII", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. vi + 52 plates", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/paintings1.pdf" - ] - }, - { - "title": "Service in the Memory of James Henry Breasted.", - "authors": [ - "" - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. 9", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/breasted_memorial.pdf" - ] - }, - { - "title": "The Oriental Institute of the University of Chicago: Fifth Edition.", - "authors": [ - "Originally published between –" - ], - "series": "The Oriental Institute of the University of Chicago: Fifth Edition", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press issued sometime" - ], - "publicationDate": "1936", - "isbn": "", - "extent": "Pp. 20; 19 B&W illustrations, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_fifth_handbook.pdf" - ] - }, - { - "title": "The Temple of King Sethos I at Abydos, Volume II: The Chapels of Amen-Re', Re'-Harakhti, Ptah, and King Sethos.", - "authors": [ - "Copied by Amice M. Calverley", - "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." - ], - "series": "Sethos 2. The Temple of King Sethos I at Abydos, Volume II: The Chapels of Amen-Re', Re'-Harakhti, Ptah, and King Sethos", - "publisherLocation": "Chicago", - "publisher": [ - "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. vii; 46 pls.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos2.pdf" - ] - }, - { - "title": "The Oriental Institute of the University of Chicago: Fourth Edition.", - "authors": [ - "" - ], - "series": "The Oriental Institute of the University of Chicago: Fourth Edition", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1935", - "isbn": "", - "extent": "Pp. 81; 63 illustrations, 2 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_fourth_handbook.pdf" - ] - }, - { - "title": "The Temple of King Sethos I at Abydos, Volume I: The Chapels of Osiris, Isis and Horus.", - "authors": [ - "Copied by Amice M. Calverley", - "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." - ], - "series": "Sethos 1. The Temple of King Sethos I at Abydos, Volume I: The Chapels of Osiris, Isis and Horus", - "publisherLocation": "Chicago", - "publisher": [ - "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" - ], - "publicationDate": "1933", - "isbn": "", - "extent": "Pp. xi; 40 pls.", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos1.pdf" - ] - }, - { - "title": "The Oriental Institute.", - "authors": [ - "James Henry Breast" - ], - "series": "The University of Chicago Survey 12", - "publisherLocation": "Chicago", - "publisher": [ - "Pp. xxiii +" - ], - "publicationDate": "455", - "isbn": "", - "extent": "Clothbound 5.25 x 7.50 in", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/The_Oriental_Institute_Breasted.pdf" - ] - }, - { - "title": "The Oriental Institute of the University of Chicago: Third Edition.", - "authors": [ - "" - ], - "series": "The Oriental Institute of the University of Chicago: Third Edition", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1931", - "isbn": "", - "extent": "Pp. 68; 61 illustrations, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_third_handbook.pdf" - ] - }, - { - "title": "The Oriental Institute: General Circular No. 2, 1928.", - "authors": [ - "" - ], - "series": "The Oriental Institute: General Circular No. 2, 1928", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1928", - "isbn": "", - "extent": "Pp. 36; 31 B&W illustrations, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_general_circular_1928.pdf" - ] - }, - { - "title": "Ancient Records of Assyria and Babylonia Volume 2: Historical Records of Assyria From Sargon to the End.", - "authors": [ - "Daniel David Luckenbill." - ], - "series": "Ancient Records of Assyria and Babylonia 2", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1927", - "isbn": "", - "extent": "Pp. xii + 504", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_records_assyria2.pdf" - ] - }, - { - "title": "Ancient Records of Assyria and Babylonia Volume 1: Historical Records of Assyria From the Earliest Times to Sargon.", - "authors": [ - "Daniel David Luckenbill." - ], - "series": "Ancient Records of Assyria and Babylonia 1", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1926", - "isbn": "", - "extent": "Pp. xvi + 297", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_records_assyria1.pdf" - ] - }, - { - "title": "The Oriental Institute: General Circular No. 1, 1926.", - "authors": [ - "" - ], - "series": "The Oriental Institute: General Circular No. 1, 1926", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1926", - "isbn": "", - "extent": "Pp. 23; 21 B&W illustrations, 1 map", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_general_circular_1926.pdf" - ] - }, - { - "title": "History of Assyria.", - "authors": [ - "Albert T. Olmstead." - ], - "series": "", - "publisherLocation": "Chicago", - "publisher": [ - "University of Chicago Press" - ], - "publicationDate": "1923", - "isbn": "", - "extent": "Pp. xxx + 695; 176 figures, 13 maps", - "url": [ - "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/history_assyria.pdf" - ] - } -] \ No newline at end of file diff --git a/processes/UofM.py b/processes/UofM.py index 5a77ef61b7..45d0c73353 100644 --- a/processes/UofM.py +++ b/processes/UofM.py @@ -30,10 +30,10 @@ def __init__(self, *args): self.createS3Client() def runProcess(self): - with open('UofM_CSV.json') as f: + with open('ingestJSONFiles/UofM_CSV.json') as f: UofMData = json.load(f) - for i in range(0, 12): + for i in range(0, len(UofMData['data'])): metaDict = UofMData['data'][i] self.processUofMRecord(metaDict) diff --git a/processes/chicagoISAC.py b/processes/chicagoISAC.py index 11e4743564..714f0fe243 100644 --- a/processes/chicagoISAC.py +++ b/processes/chicagoISAC.py @@ -28,7 +28,7 @@ def __init__(self, *args): self.createS3Client() def runProcess(self): - with open('chicagoISAC_metadata.json') as f: + with open('ingestJSONFiles/chicagoISAC_metadata.json') as f: chicagoISACData = json.load(f) for metaDict in chicagoISACData: From bb3e743996645c7855626cb44545b1ba86b122d1 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 31 Jan 2024 16:19:57 -0500 Subject: [PATCH 4/4] Removed ingestJSONFile directory from gitignore --- .gitignore | 2 - CHANGELOG.md | 2 +- ingestJSONFiles/UofM_CSV.json | 6142 ++++++++++++++++ ingestJSONFiles/chicagoISAC_metadata.json | 8149 +++++++++++++++++++++ 4 files changed, 14292 insertions(+), 3 deletions(-) create mode 100644 ingestJSONFiles/UofM_CSV.json create mode 100644 ingestJSONFiles/chicagoISAC_metadata.json diff --git a/.gitignore b/.gitignore index ebc2f870bb..f1870d6b4b 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,3 @@ tags # Vim *.swp /*venv* -# Ingest JSON files -/ingestJSONFiles diff --git a/CHANGELOG.md b/CHANGELOG.md index 2967c204c4..639c053d33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ - New /fulfill endpoint with ability to check for NYPL login in Bearer authorization header - Fulfill endpoint returns pre-signed URLs for objects in private buckets when user is logged in - Added new University of Michigan process and mapping for ingestion -- New directory for JSON files that will be ingested +- New directory for test JSON files that will be ingested ## Fixed - NYPL records not being added due to SQLAlchemy error - Bardo CCE API and Hathi DataFiles URL updated diff --git a/ingestJSONFiles/UofM_CSV.json b/ingestJSONFiles/UofM_CSV.json new file mode 100644 index 0000000000..d81b4af37b --- /dev/null +++ b/ingestJSONFiles/UofM_CSV.json @@ -0,0 +1,6142 @@ +{ + "data": [ + { + "Author(s)": "Bays, Daniel H", + "ISBN": "0472081055; 9780472081059", + "OCLC": "3274344", + "File ID 1": "39015000323371", + "Title": "China enters the twentieth century : Chang Chih-tung and the issues of a new age, 1895-1909 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1978", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gomberg, Edith Lisansky; White, Helene Raskin; Carpenter, John A ", + "ISBN": "0472080288; 9780472080281; 0472100246; 9780472100248", + "OCLC": "8306506", + "File ID 1": "39015000516008", + "Title": "Alcohol, science, and society revisited ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1982", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Sociology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Blanchard, William H", + "ISBN": "", + "OCLC": "252414", + "File ID 1": "39015000601354", + "Title": "Rousseau and the spirit of revolt; a psychological study", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1967", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Buss, Fran Leeper", + "ISBN": "0472093223; 9780472093229; 0472063227; 9780472063222", + "OCLC": "6086142", + "File ID 1": "39015000787385", + "Title": "La partera : story of a midwife ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1980", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies|Health & Medicine|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bromage, Mary Cogan", + "ISBN": "", + "OCLC": "1492237", + "File ID 1": "39015001569659", + "Title": "Writing for business", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Composition|Business", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472080342; 9780472080342", + "OCLC": "10981331", + "File ID 1": "39015001710295", + "Title": "English structure practices ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1983", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Curtis, James L", + "ISBN": "0472269003; 9780472269006", + "OCLC": "150483", + "File ID 1": "39015001987042", + "Title": "Blacks, medical schools, and society", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1971", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Catlin, George Edward Gordon, Sir", + "ISBN": "", + "OCLC": "497038", + "File ID 1": "39015002397415", + "Title": "Political and sociological theory and its applications", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1964", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Coffin, Edna Amir", + "ISBN": "0472082264; 9780472082261", + "OCLC": "5465624", + "File ID 1": "39015002582230", + "Title": "Lessons in modern Hebrew : level II ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1978", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Foreign Language - Modern Hebrew", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Morley, Joan", + "ISBN": "047208660x", + "OCLC": "5813633", + "File ID 1": "39015002623638", + "Title": "Improving spoken English : an intensive personalized program in perception, pronunciation, practice in context ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1979", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Zhao, Gang", + "ISBN": "", + "OCLC": "228125", + "File ID 1": "39015002685496", + "Title": "The rate and pattern of industrial growth in Communist China.", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cathcart, Dwight", + "ISBN": "0472081985; 9780472081981", + "OCLC": "1842143", + "File ID 1": "39015002979329", + "Title": "Doubting conscience : Donne and the poetry of moral argument ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1975", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Literary Studies - British and Irish Literatures|Literary Studies - 16th and 17th Century Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Carmen, Ira H", + "ISBN": "", + "OCLC": "330389", + "File ID 1": "39015003760926", + "Title": "Movies, censorship, and the law ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1966", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Annenkov, Pavel Vasil\u02b9evich", + "ISBN": "", + "OCLC": "171470", + "File ID 1": "39015004071265", + "Title": "The extraordinary decade; literary memoirs ", + "Contributors": "Edited by Arthur P. Mendel. Translated by Irwin R. Titunik", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1968", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Duckworth, George E", + "ISBN": "", + "OCLC": "45156", + "File ID 1": "39015004754787", + "Title": "Vergil and classical hexameter poetry; a study in metrical variety", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1969", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Frank Edward", + "ISBN": "0472041002; 9780472041008", + "OCLC": "5675403", + "File ID 1": "39015005159390", + "Title": "Cosa, the making of a Roman town ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1979", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Roman|History|Archaeology - Roman", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "McNeal, Robert Hatch", + "ISBN": "0472616005; 9780472616008", + "OCLC": "367616", + "File ID 1": "39015005188019", + "Title": "Bride of the revolution; Krupskaya and Lenin", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1972", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Francko, David A; Wetzel, Robert G", + "ISBN": "0472080377; 9780472080373; 0472100327; 9780472100323", + "OCLC": "9196382", + "File ID 1": "39015005225993", + "Title": "To quench our thirst : the present and future status of freshwater resources of the United States ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1983", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Natural Resources", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Frankena, William K", + "ISBN": "0472093169; 9780472093168; 0472063162; 9780472063161", + "OCLC": "5892707", + "File ID 1": "39015005291144", + "Title": "Thinking about morality ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1980", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eggert, Gerald G", + "ISBN": "", + "OCLC": "231758", + "File ID 1": "39015005353738", + "Title": "Railroad labor disputes; the beginnings of Federal strike policy", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1967", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Balabanoff, Angelica", + "ISBN": "", + "OCLC": "407884", + "File ID 1": "39015005550507", + "Title": "Impressions of Lenin", + "Contributors": "Translated by Isotta Cesari", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1964", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Evans, Howard Ensign; Eberhard, Jane West", + "ISBN": "472001188", + "OCLC": "97540", + "File ID 1": "39015005798403", + "Title": "The wasps", + "Contributors": "Drawings by Sarah Landry", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1970", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "De George, Richard T", + "ISBN": "", + "OCLC": "5432", + "File ID 1": "39015008239744", + "Title": "Soviet ethics and morality", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1969", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bukharin, Nikola\u012d", + "ISBN": "", + "OCLC": "273219", + "File ID 1": "39015008267620", + "Title": "The ABC of communism;", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1966", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|Political Science|European Studies - Eastern European Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cates, Jerry Ray", + "ISBN": "0472100262; 9780472100262", + "OCLC": "8727810", + "File ID 1": "39015008319389", + "Title": "Insuring inequality : administrative leadership in social security, 1935-54 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1983", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Sociology|History|Political Science - American Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bright , Charles", + "ISBN": "0472100505; 9780472100507", + "OCLC": "10751642", + "File ID 1": "39015008365275", + "Title": "Statemaking and social movements : essays in history and theory ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1984", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - Comparative Politics|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Buffa, Dudley W", + "ISBN": "047210053X; 9780472100538", + "OCLC": "10824874", + "File ID 1": "39015008454590", + "Title": "Union power and American democracy : the UAW and the Democratic Party, 1972-83 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1984", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History - American History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Chou, Minchih", + "ISBN": "0472100394; 9780472100392", + "OCLC": "10018401", + "File ID 1": "39015008523287", + "Title": "Hu Shih and intellectual choice in modern China ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1984", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ellin-Elmakiss, Esther", + "ISBN": "9780472080496; 0472080490", + "OCLC": "11570491", + "File ID 1": "39015008735725", + "Title": "Catching on to American idioms ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1984", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cassuto, David N", + "ISBN": "0472104748; 9780472104741; 0472082388; 9780472082384", + "OCLC": "29220500", + "File ID 1": "39015008948575", + "Title": "Cold running river ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Environmental Studies|Michigan and the Great Lakes - Natural Resources", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "MacDonald, Erik", + "ISBN": "0472103113; 9780472103119", + "OCLC": "28709659", + "File ID 1": "39015009127385", + "Title": "Theater at the margins : text and the post-structured stage ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Milio, Nancy", + "ISBN": "0472650955:", + "OCLC": "62089", + "File ID 1": "39015009166201", + "Title": "9226 Kercheval : the storefront that did not burn.", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1970", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Sociology|Cultural Studies|Michigan and the Great Lakes", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bradley, Lynette; Bryant, Peter", + "ISBN": "0472080555; 9780472080557", + "OCLC": "11523602", + "File ID 1": "39015010243759", + "Title": "Rhyme and reason in reading and spelling ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1985", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Day, Robert Adams", + "ISBN": "", + "OCLC": "350899", + "File ID 1": "39015010338666", + "Title": "Told in letters : epistolary fiction before Richardson ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1966", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cruickshank, William M", + "ISBN": "0472100777; 9780472100774", + "OCLC": "13332182", + "File ID 1": "39015011198382", + "Title": "Disputable decisions in special education ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1986", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education - Special Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Anderson, Warren D", + "ISBN": "", + "OCLC": "359269", + "File ID 1": "39015011238881", + "Title": "Matthew Arnold and the classical tradition", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - 19th Century Literature|Literary Studies - British and Irish Literatures|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Balabanoff, Angelica", + "ISBN": "", + "OCLC": "3826091", + "File ID 1": "39015011566406", + "Title": "Impressions of Lenin", + "Contributors": "Translated by Isotta Cesari, foreword by Bertram D. Wolfe", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1968", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eden, Lynn", + "ISBN": "0472298755:", + "OCLC": "394103", + "File ID 1": "39015011804500", + "Title": "Crisis in Watertown; the polarization of an American community. -", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1972", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Mikesell, Raymond F", + "ISBN": "0472100831; 9780472100835", + "OCLC": "14719770", + "File ID 1": "39015012118280", + "Title": "Nonfuel minerals : foreign dependence and national security ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1987", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Getz-Preziosi, Pat", + "ISBN": "047210067X; 9780472100675", + "OCLC": "12614793", + "File ID 1": "39015012222322", + "Title": "Sculptors of the Cyclades : individual and tradition in the third millennium B.C. ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1987", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Greek|Archaeology - Greek", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Boulding, Kenneth E.", + "ISBN": "", + "OCLC": "67534222", + "File ID 1": "39015012384320", + "Title": "The Image: Knowledge in Life and Society", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1956, 1959", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Philosophy|Economics - History of Economic Thought", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eckstein, Alexander", + "ISBN": "0472298720; 9780472298723", + "OCLC": "1491042", + "File ID 1": "39015012412733", + "Title": "China's economic development; the interplay of scarcity and ideology ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1975", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics|Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Meier, August", + "ISBN": "9780472061181; 0472061186", + "OCLC": "423072", + "File ID 1": "39015012437623", + "Title": "Negro thought in America, 1880-1915 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1963", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History - American History|African-American and African Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gallagher, Tess", + "ISBN": "0472063707; 9780472063703; 0472093703; 9780472093700", + "OCLC": "14130955", + "File ID 1": "39015012865443", + "Title": "A concert of tenses : essays on poetry ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1986", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Gender Studies|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Mazlakh, Serhi\u012d M; Shakhrai, Vasyl'", + "ISBN": "0472085905; 9780472085903", + "OCLC": "90825", + "File ID 1": "39015013018182", + "Title": "On the current situation in the Ukraine ", + "Contributors": "Edited by Peter J. Potichnyj. Introd. by Michael M. Luther", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1970", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Forsyth, George H; Weitzmann, Kurt", + "ISBN": "0472330004; 9780472330003", + "OCLC": "762156", + "File ID 1": "39015013419224", + "Title": "The Monastery of Saint Catherine at Mount Sinai : the church and fortress of Justinian / Plates", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1973", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bukharin, Nikola\u012d", + "ISBN": "", + "OCLC": "72667", + "File ID 1": "39015013534642", + "Title": "Historical materialism; a system of sociology", + "Contributors": "New introd. by Alfred G. Meyer. Translated from the 3d Russian ed.", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1969", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dorr, John Adam; Eschman, Donald F", + "ISBN": "", + "OCLC": "68717", + "File ID 1": "39015013985737", + "Title": "Geology of Michigan ", + "Contributors": "Illustrated by Derwin Bell", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1970", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Natural Resources|Nature/Environment|Michigan and the Great Lakes - Nature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dimond, Paul R", + "ISBN": "047210103X; 9780472101030", + "OCLC": "18715856", + "File ID 1": "39015014307543", + "Title": "The Supreme Court and judicial choice : the role of provisional review in a democracy ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1989", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Law|Political Science", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Maybury-Lewis, David; Almagor, Uri", + "ISBN": "0472100947; 9780472100941; 0472080865; 9780472080861", + "OCLC": "19323817", + "File ID 1": "39015014629896", + "Title": "The Attraction of opposites : thought and society in the dualistic mode ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1989", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cebri\u00e1n, Juan Luis", + "ISBN": "0472101153; 9780472101153", + "OCLC": "20392011", + "File ID 1": "39015015529483", + "Title": "The press and Main Street : El Pa\u00eds--journalism in democratic Spain ", + "Contributors": "translated by Brian Nienhaus", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1989", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Colwell, Peter", + "ISBN": "0472100653; 9780472100651", + "OCLC": "11622575", + "File ID 1": "39015016354881", + "Title": "Blaschke products : bounded analytic functions ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1985", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Mathematics and Engineering", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dwyer, Peter D", + "ISBN": "0472101579; 9780472101573", + "OCLC": "21155152", + "File ID 1": "39015018820962", + "Title": "The pigs that ate the garden : a human ecology from Papua New Guinea ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bowersock, Glen Warren", + "ISBN": "0472094181; 9780472094189", + "OCLC": "20724797", + "File ID 1": "39015018874639", + "Title": "Hellenism in Late Antiquity ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Greek|History|Archaeology - Greek", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Downs, George W; Rocke, David M", + "ISBN": "0472094505; 9780472094509; 0472064509; 9780472064502", + "OCLC": "21302036", + "File ID 1": "39015018889264", + "Title": "Tacit bargaining, arms races, and arms control ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - International Relations", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "McLaughlin, Doris B; Schoomaker, Anita L W", + "ISBN": "0472086154; 9780472086153", + "OCLC": "4194928", + "File ID 1": "39015019359796", + "Title": "The Landrum-Griffin act and union democracy ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1979", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "St John de Cr\u00e8vecoeur, J Hector", + "ISBN": "", + "OCLC": "1841474", + "File ID 1": "39015019385130", + "Title": "Journey into northern Pennsylvania and the State of New York.", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1964", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Duch, Raymond M", + "ISBN": "0472101919; 9780472101917", + "OCLC": "23144471", + "File ID 1": "39015019483356", + "Title": "Privatizing the economy : telecommunications policy in comparative perspective ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - Political Economy|Economics - Industrial Organization|Political Science - Comparative Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brater, Enoch; Cohn, Ru", + "ISBN": "0472102052; 9780472102051", + "OCLC": "22114566", + "File ID 1": "39015019554107", + "Title": "Around the absurd : essays on modern and postmodern drama ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bhagwati, Jagdish; Patrick, Hugh T", + "ISBN": "0472094556; 9780472094554; 047206455X; 9780472064557", + "OCLC": "22276118", + "File ID 1": "39015019635567", + "Title": "Aggressive unilateralism : America's 301 trade policy and the world trading system ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics|Economics - Macro Economics|Political Science - Political Methodology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Deardorff, Alan V; Stern, Robert M", + "ISBN": "0472102044; 9780472102044", + "OCLC": "22450576", + "File ID 1": "39015019641946", + "Title": "Computational analysis of global trading arrangements ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Carlson, Susan", + "ISBN": "0472101870; 9780472101870", + "OCLC": "22892401", + "File ID 1": "39015019813461", + "Title": "Women and comedy : rewriting the British theatrical tradition ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Gender Studies|Literary Studies - British and Irish Literatures", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eisner, Robert", + "ISBN": "0472102419; 9780472102419", + "OCLC": "23048437", + "File ID 1": "39015019825960", + "Title": "Travelers to an antique land : the history and literature of travel to Greece ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|Classical Studies - Greek|Literary Studies - European Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Davison, Peter", + "ISBN": "0472094076; 9780472094073; 047206407X; 9780472064076", + "OCLC": "22983201", + "File ID 1": "39015019868192", + "Title": "One of the dangerous trades : essays on the work and workings of poetry ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gold, Martin; Mann, David W", + "ISBN": "0472080466; 9780472080465", + "OCLC": "10072325", + "File ID 1": "39015020725431", + "Title": "Expelled to a friendlier place : a study of effective alternative schools ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1984", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education|Psychology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Berry, Ellen E", + "ISBN": "0472103008; 9780472103003", + "OCLC": "25547318", + "File ID 1": "39015020872977", + "Title": "Curved thought and textual wandering : Gertrude Stein's postmodernism ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literary Criticism and Theory|Gender Studies - Women's Studies|Literary Studies - Modern Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Romilly, Jacqueline de", + "ISBN": "0472087622; 9780472087624", + "OCLC": "3093790", + "File ID 1": "39015021480085", + "Title": "The rise and fall of states according to Greek authors ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1977", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Courtney", + "ISBN": "0472102508; 9780472102501", + "OCLC": "23648484", + "File ID 1": "39015021834059", + "Title": "Ballots of tumult : a portrait of volatility in American voting ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - American Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cohen, Paula Marantz", + "ISBN": "0472102346; 9780472102341", + "OCLC": "23583316", + "File ID 1": "39015022036258", + "Title": "The daughter's dilemma : family process and the nineteenth-century domestic novel ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literary Criticism and Theory|Gender Studies - Women's Studies|Psychology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Chen, Kan; Lagler, Karl F.", + "ISBN": "9780472750733", + "OCLC": "7380690434", + "File ID 1": "39015023115937", + "Title": "Growth policy : population, environment, and beyond", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1974", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gerber, Paul J; Reiff, Henry B", + "ISBN": "047210246X; 9780472102464", + "OCLC": "23583374", + "File ID 1": "39015024780382", + "Title": "Speaking for themselves : ethnographic interviews with adults with learning disabilities ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education - Special Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Argyros, Alexander J", + "ISBN": "0472102214; 9780472102211", + "OCLC": "24501802", + "File ID 1": "39015024806211", + "Title": "A blessed rage for order : deconstruction, evolution, and chaos ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Essay and Interview|Literary Studies - Literary Criticism and Theory|Literary Studies - Modern Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "McLeod, Glenda", + "ISBN": "0472102060; 9780472102068", + "OCLC": "24142533", + "File ID 1": "39015024952312", + "Title": "Virtue and venom : catalogs of women from antiquity to the Renaissance ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literary Criticism and Theory|Gender Studies|Classical Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fine, Sidney", + "ISBN": "9780472100460", + "OCLC": "1700091", + "File ID 1": "39015025115265", + "Title": "Frank Murphy: the detroit years", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1984", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History - American History|Law", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Flinn, Juliana", + "ISBN": "0472103067; 9780472103065", + "OCLC": "25245526", + "File ID 1": "39015025202253", + "Title": "Diplomas and thatch houses : asserting tradition in a changing Micronesia ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cole, Juan RI", + "ISBN": "0472094491; 9780472094493; 0472064495; 9780472064496", + "OCLC": "24870931", + "File ID 1": "39015025232086", + "Title": "Comparing Muslim societies : knowledge and the state in a world civilization ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - Comparative Politics|Sociology|Anthropology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Evans, Jane DeRose", + "ISBN": "0472102826; 9780472102822", + "OCLC": "24912573", + "File ID 1": "39015025263321", + "Title": "The art of persuasion : political propaganda from Aeneas to Brutus ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Roman|History|Archaeology - Roman", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Matheson, William H", + "ISBN": "", + "OCLC": "1905062", + "File ID 1": "39015027924086", + "Title": "Claudel and Aeschylus; a study of Claudel's translation of the Oresteia", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Chueca y Mora, Francisco Alberto", + "ISBN": "047208075X; 9780472080755", + "OCLC": "16684939", + "File ID 1": "39015028776709", + "Title": "La normalizaci\u00f3n del deficiente : actitudes del profesorado ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1988", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education - Special Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Finger, J Michael", + "ISBN": "0472104063; 9780472104062", + "OCLC": "26854170", + "File ID 1": "39015028913203", + "Title": "Antidumping : how it works and who gets hurt ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics|Political Science - Political Methodology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Merritt, Richard L; Muncaster, Robert G; Zinnes, Dina A", + "ISBN": "0472104276; 9780472104277", + "OCLC": "28665539", + "File ID 1": "39015028913351", + "Title": "International event-data developments : DDIR phase II ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - International Relations|Political Science - Political Methodology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fay, Peter Ward", + "ISBN": "0472101269; 9780472101269", + "OCLC": "28634642", + "File ID 1": "39015028927898", + "Title": "The forgotten army : India's armed struggle for independence, 1942-1945 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Lucas, Mar\u00eda Elena", + "ISBN": "0472094327; 9780472094325; 0472064320; 9780472064328", + "OCLC": "27226011", + "File ID 1": "39015029087213", + "Title": "Forged under the sun : the life of Mar\u00eda Elena Lucas = Forjada bajo el sol ", + "Contributors": "edited and with an introduction by Fran Leeper Buss", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Cultural Studies|Gender Studies - Women's Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ben-Ner, Avner; Gui, Benedetto", + "ISBN": "0472104292; 9780472104291", + "OCLC": "27936561", + "File ID 1": "39015029090886", + "Title": "The Nonprofit sector in the mixed economy ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - Industrial Organization|Economics - Micro Economics|Economics - System -- Development", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "047208206X; 9780472082063", + "OCLC": "28302887", + "File ID 1": "39015029119628", + "Title": "Intermediate reading practices : building reading & vocabulary skills ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ellin-Elmakiss, Esther", + "ISBN": "0472082086; 9780472082087", + "OCLC": "28940587", + "File ID 1": "39015029119685", + "Title": "Catching on to American idioms ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Colander, David; Brenner, Reuven ", + "ISBN": "0472094866; 9780472094868; 047206486X; 9780472064861", + "OCLC": "24907931", + "File ID 1": "39015029159269", + "Title": "Educating economists ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics|Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Clayton, Susan D; Crosby, Faye J", + "ISBN": "0472094645; 9780472094646; 0472064649; 9780472064649", + "OCLC": "26158856", + "File ID 1": "39015029252551", + "Title": "Justice, gender, and affirmative action ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Psychology|Political Science|Sociology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Coffin, Edna Amir", + "ISBN": "0472101242; 9780472101245; 0472082213; 9780472082216", + "OCLC": "26662998", + "File ID 1": "39015029522680", + "Title": "Encounters in modern Hebrew, level 1 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Foreign Language - Modern Hebrew", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gmelch, George", + "ISBN": "0472094785; 9780472094783; 0472064789; 9780472064786", + "OCLC": "26502241", + "File ID 1": "39015029577247", + "Title": "Double passage : the lives of Caribbean migrants abroad and back home ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|Caribbean Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dharmadasa, K\u0113 En \u014c", + "ISBN": "0472102885; 9780472102884", + "OCLC": "26545370", + "File ID 1": "39015029713289", + "Title": "Language, religion, and ethnic assertiveness : the growth of Sinhalese nationalism in Sri Lanka ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dettmar, Kevin JH", + "ISBN": "0472102907; 9780472102907", + "OCLC": "26306375", + "File ID 1": "39015029868158", + "Title": "Rereading the new : a backward glance at modernism ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literary Criticism and Theory|Literary Studies - Modern Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cope, Esther S", + "ISBN": "0472103032; 9780472103034", + "OCLC": "26402496", + "File ID 1": "39015029888743", + "Title": "Handmaid of the Holy Spirit : Dame Eleanor Davies, never soe mad a ladie ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Biography|History|Gender Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Doane, Janice L; Hodges, Devon", + "ISBN": "0472094335; 9780472094332; 0472064339; 9780472064335", + "OCLC": "26810151", + "File ID 1": "39015029889360", + "Title": "From Klein to Kristeva : psychoanalytic feminism and the search for the \"good enough\" mother ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies - Women's Studies|Psychology|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cervantes, Lucius F.", + "ISBN": "", + "OCLC": "1674022", + "File ID 1": "39015029924209", + "Title": "The Dropout: Causes & Cures", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Baudoin, E Margaret ", + "ISBN": "0472081853; 9780472081851; 0472081861; 9780472081868", + "OCLC": "28869741", + "File ID 1": "39015029935460", + "Title": "Reader's choice. International Edition. Book 1", + "Contributors": "revised by Mark A. Clarke, Barbara K. Dobson, Sandra Silberstein; developed under the auspices of the English Language Institute at the University of Michigan", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Baudoin, E Margaret ", + "ISBN": "0472081853; 9780472081851; 0472081861; 9780472081868", + "OCLC": "28869741", + "File ID 1": "39015029935585", + "Title": "Reader's choice. International edition. Book 2", + "Contributors": "revised by Mark A. Clarke, Barbara K. Dobson, Sandra Silberstein; developed under the auspices of the English Language Institute at the University of Michigan", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fisher, Donald", + "ISBN": "0472102702; 9780472102709", + "OCLC": "26763613", + "File ID 1": "39015029937342", + "Title": "Fundamental development of the social sciences : Rockefeller philanthropy and the United States Social Science Research Council ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Sociology|Cultural Studies|Anthropology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marks, Stephen V; Maskus, Keith E", + "ISBN": "0472104284; 9780472104284", + "OCLC": "27106517", + "File ID 1": "39015029981308", + "Title": "The Economics and politics of world sugar policies ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics|Economics - System -- Development", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Conway , Jill Ker; Bourque, Susan C", + "ISBN": "0472104462; 9780472104468", + "OCLC": "28183518", + "File ID 1": "39015029997569", + "Title": "The Politics of women's education : perspectives from Asia, Africa, and Latin America ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education|Gender Studies|Political Science", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Barringer, Judith M", + "ISBN": "0472104187; 9780472104185", + "OCLC": "31046446", + "File ID 1": "39015031762837", + "Title": "Divine escorts : Nereids in archaic and classical Greek art ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Art - Architecture|Gender Studies - Women's Studies|Archaeology - Greek", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Mahoney, Margaret M", + "ISBN": "0472105191; 9780472105199", + "OCLC": "30593373", + "File ID 1": "39015032146600", + "Title": "Stepfamilies and the law ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Law|Sociology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Morawski, Jill Gladys", + "ISBN": "0472094815; 9780472094813; 0472064819; 9780472064816", + "OCLC": "30073673", + "File ID 1": "39015032308093", + "Title": "Practicing feminisms, reconstructing psychology : notes on a liminal science ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies|Psychology|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "ApRoberts, Ruth", + "ISBN": "0472104942; 9780472104949", + "OCLC": "29753466", + "File ID 1": "39015032449541", + "Title": "The Biblical web ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Literary Studies - 19th Century Literature|Religion", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Barnes, Ruth", + "ISBN": "0472102931; 9780472102938", + "OCLC": "27897362", + "File ID 1": "39015032582242", + "Title": "Indian block-printed cotton fragments in the Kelsey Museum, the University of Michigan ", + "Contributors": "Kelsey Museum of Archaeology", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Archaeology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472082280; 9780472082285", + "OCLC": "29324364", + "File ID 1": "39015032710587", + "Title": "Talk a lot : communication activities for speaking fluency ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "McPherson, Michael S; Schapiro, Morton Owen; Winston, Gordon C", + "ISBN": "0472104047; 9780472104048", + "OCLC": "28891631", + "File ID 1": "39015032762992", + "Title": "Paying the piper : productivity, incentives, and financing in U.S. higher education ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education|Economics - Micro Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Carmody, James Patrick", + "ISBN": "0472104667; 9780472104666", + "OCLC": "28376892", + "File ID 1": "39015032815071", + "Title": "Rereading Moli\u00e8re : mise en sc\u00e8ne from Antoine to Vitez ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory|Literary Studies - European Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Creeley, Robert", + "ISBN": "0472095366; 9780472095360; 047206536X; 9780472065363", + "OCLC": "28676732", + "File ID 1": "39015032834619", + "Title": "Tales out of school : selected interviews ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Carruth, Hayden", + "ISBN": "047209419X; 9780472094196; 0472064193; 9780472064199", + "OCLC": "26504528", + "File ID 1": "39015033120869", + "Title": "Suicides and jazzers ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Literary Studies - Modern Literature|Literary Studies - Essay and Interview", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fox, Thomas C", + "ISBN": "0472095145; 9780472095148; 0472065149; 9780472065141", + "OCLC": "27382306", + "File ID 1": "39015033143952", + "Title": "Border crossings : an introduction to East German prose ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|Literary Studies - European Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Chernoff, Fred", + "ISBN": "0472105507; 9780472105502", + "OCLC": "31009727", + "File ID 1": "39015034023922", + "Title": "After bipolarity : the vanishing threat, theories of cooperation, and the future of the Atlantic Alliance ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - International Relations", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marshall, Margaret J", + "ISBN": "0472105361; 9780472105366", + "OCLC": "31173043", + "File ID 1": "39015034023930", + "Title": "Contesting cultural rhetorics : public discourse and education, 1890-1900 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Cultural Studies|Literary Studies - British and Irish Literatures|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Machann, Clinton", + "ISBN": "0472105655; 9780472105656", + "OCLC": "31012024", + "File ID 1": "39015034295934", + "Title": "The genre of autobiography in Victorian literature ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Literary Studies - 19th Century Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Beck, Hermann", + "ISBN": "0472105469; 9780472105465", + "OCLC": "31044897", + "File ID 1": "39015034305022", + "Title": "The origins of the authoritarian welfare state in Prussia : conservatives, bureaucracy, and the social question, 1815-70 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|Political Science|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Goldman, Marion S", + "ISBN": "0472093320; 9780472093328; 0472063324; 9780472063321", + "OCLC": "7652663", + "File ID 1": "39015034336068", + "Title": "Gold diggers & silver miners : prostitution and social life on the Comstock Lode ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1981", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies|Sociology|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eldersveld, Samuel James", + "ISBN": "0472095625; 9780472095629; 0472065629; 9780472065622", + "OCLC": "31167081", + "File ID 1": "39015034399363", + "Title": "Party conflict and community development : postwar politics in Ann Arbor ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "|Political Science - American Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Freedman, Eric", + "ISBN": "0472082000; 9780472082001", + "OCLC": "27812674", + "File ID 1": "39015034656853", + "Title": "Michigan free : your comprehensive guide to free travel, recreation & entertainment opportunities ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1993", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brenner, Reuven", + "ISBN": "0472095560; 9780472095568; 0472065564; 9780472065561", + "OCLC": "29752749", + "File ID 1": "39015034913213", + "Title": "Labyrinths of prosperity : economic follies, democratic remedies ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - Macro Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bertsch, Gary K; Cupitt, Richard T; Elliott-Gower, Steven", + "ISBN": "0472105159; 9780472105151", + "OCLC": "29956201", + "File ID 1": "39015034913239", + "Title": "International cooperation on nonproliferation export controls : prospects for the 1990s and beyond ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - International Relations|Economics - International Economics|Political Science - Political Economy", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Mebane Jr., Walter R.", + "ISBN": "", + "OCLC": "20621181", + "File ID 1": "39015035366163", + "Title": "Political analysis : an annual publication of the Methodology Section of the American Political Science Association. Volume 7, 1998", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - Political Methodology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cooper, Alice Holmes", + "ISBN": "0472106244; 9780472106240", + "OCLC": "31815221", + "File ID 1": "39015035745317", + "Title": "Paradoxes of peace : German peace movements since 1945 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History|Political Science", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cavusgil, Sharon L", + "ISBN": "0472083244; 9780472083244", + "OCLC": "34483801", + "File ID 1": "39015037487900", + "Title": "The road to healthy living. Teacher's manual ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Goldstein, Laurence", + "ISBN": "0472095978; 9780472095971; 0472065971; 9780472065974", + "OCLC": "31239200", + "File ID 1": "39015037693028", + "Title": "The male body : features, destinies, exposures ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies - Gay and Lesbian Studies|Literary Studies - Essay and Interview|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Adams, Hazard", + "ISBN": "0472106236; 9780472106233; 047210621X; 9780472106219", + "OCLC": "33101599", + "File ID 1": "39015037753863", + "Title": "The book of Yeats's Vision : romantic modernism and antithetical tradition ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Literary Studies - Poetry and Poetry Criticism|Literary Studies - Modern Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Miles, James A R", + "ISBN": "0472107313; 9780472107315", + "OCLC": "34080083", + "File ID 1": "39015037754036", + "Title": "The legacy of Tiananmen : China in disarray ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|Political Science - Comparative Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gaubatz, Kathlyn Taylor", + "ISBN": "0472105825; 9780472105823", + "OCLC": "31604854", + "File ID 1": "39015037759662", + "Title": "Crime in the public mind ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "|Political Science - American Politics|Law", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bodemann, Y Michal", + "ISBN": "0472105841; 9780472105847", + "OCLC": "33819324", + "File ID 1": "39015037771097", + "Title": "Jews, Germans, memory : reconstructions of Jewish life in Germany ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|Sociology|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Booth, Philip", + "ISBN": "0472095862; 9780472095865; 0472065866; 9780472065868", + "OCLC": "34243828", + "File ID 1": "39015037773499", + "Title": "Trying to say it : outlook and insights on how poems happen ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Downey, Susan B", + "ISBN": "047210571X; 9780472105717", + "OCLC": "32698913", + "File ID 1": "39015037786897", + "Title": "Architectural terracottas from the Regia ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Archaeology - Roman|Classical Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marx, Leo; Mazlish, Bruce", + "ISBN": "0472106767; 9780472106769", + "OCLC": "33971872", + "File ID 1": "39015037791624", + "Title": "Progress : fact or illusion? ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History - Intellectual History||Political Science", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dunn, Gary A", + "ISBN": "0472095153; 9780472095155; 0472065157; 9780472065158", + "OCLC": "34029467", + "File ID 1": "39015037792234", + "Title": "Insects of the Great Lakes Region ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Natural Resources|Michigan and the Great Lakes - Nature|Michigan and the Great Lakes - Nature Guides", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fine, Sidney", + "ISBN": "0472105760; 9780472105762", + "OCLC": "31132061", + "File ID 1": "39015037796490", + "Title": "Without blare of trumpets : Walter Drew, the National Erectors' Association, and the open shop movement, 1903-57 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History - American History|Class Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brater, Enoch", + "ISBN": "0472105833; 9780472105830", + "OCLC": "32014611", + "File ID 1": "39015037801779", + "Title": "The Theatrical gamut : notes for a post-Beckettian stage ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472083945; 9780472083947", + "OCLC": "36033542", + "File ID 1": "39015037829325", + "Title": "Beginning reading practices : building reading and vocabulary strategies ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Reading", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gabler, Hans Walter; Bornstein, George; Pierce, Gillian Borland", + "ISBN": "0472105701; 9780472105700", + "OCLC": "31290614", + "File ID 1": "39015037837021", + "Title": "Contemporary German editorial theory ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Editorial Theory|German Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Muir, Sharona", + "ISBN": "0472105809; 9780472105809", + "OCLC": "32012366", + "File ID 1": "39015037845099", + "Title": "The artificial paradise : science fiction and American reality ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literature and Science|Cultural Studies|Gender Studies - Women's Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Finneran, Richard J", + "ISBN": "0472106902; 9780472106905", + "OCLC": "34243021", + "File ID 1": "39015037845636", + "Title": "The literary text in the digital age ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Editorial Theory|Literary Studies - Poetry and Poetry Criticism|Literary Studies - British and Irish Literatures", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Miner, Earl", + "ISBN": "0472106996; 9780472106998", + "OCLC": "34745891", + "File ID 1": "39015038142900", + "Title": "Naming properties : nominal reference in travel writings by Bash\u014d and Sora, Johnson and Boswell ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Asian Studies|Philosophy", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Moroff, Diane Lynn", + "ISBN": "0472107267; 9780472107261", + "OCLC": "34782609", + "File ID 1": "39015038148378", + "Title": "Fornes : theater in the present tense ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Gender Studies - Women's Studies|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gebhard, Jerry Greer", + "ISBN": "0472082310; 9780472082315", + "OCLC": "34282798", + "File ID 1": "39015038155381", + "Title": "Teaching English as a foreign or second language : a self-development and methodology guide ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Baudoin, E Margaret", + "ISBN": "0472082655; 9780472082650", + "OCLC": "31944681", + "File ID 1": "39015038188390", + "Title": "Reader's choice ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Courtney", + "ISBN": "0472106430; 9780472106431", + "OCLC": "32203718", + "File ID 1": "39015038525807", + "Title": "Serpents in the sand : essays on the nonlinear nature of politics and human destiny ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "|Political Science - American Politics|Political Science - Political Methodology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Esarey, Gary R", + "ISBN": "0472083767; 9780472083763", + "OCLC": "35794544", + "File ID 1": "39015038525948", + "Title": "Pronunciation exercises for English as a second language ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Boruch, Marianne", + "ISBN": "0472095846; 9780472095841; 047206584X; 9780472065844", + "OCLC": "31607020", + "File ID 1": "39015038532266", + "Title": "Poetry's old air ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Poetry and Poetry Criticism|Gender Studies|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Booker, M Keith", + "ISBN": "0472106228; 9780472106226", + "OCLC": "33101592", + "File ID 1": "39015038540285", + "Title": "Joyce, Bakhtin, and the literary tradition : toward a comparative cultural poetics ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Literary Studies - Modern Literature|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Clotfelter, Caroline Postelle", + "ISBN": "0472095293; 9780472095292; 0472065297; 9780472065295", + "OCLC": "35593708", + "File ID 1": "39015038615202", + "Title": "On the third hand : humor in the dismal science, an anthology ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gardinier, Suzanne", + "ISBN": "0472096427; 9780472096428; 0472066420; 9780472066421", + "OCLC": "35001901", + "File ID 1": "39015038615236", + "Title": "A world that will hold all the people ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - American Literature|Literary Studies - Poetry and Poetry Criticism", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bretzius, Stephen", + "ISBN": "0472108530; 9780472108534", + "OCLC": "37533925", + "File ID 1": "39015040037577", + "Title": "Shakespeare in theory : the postmodern academy and the early modern theater ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literary Criticism and Theory|Cultural Studies|Literary Studies - British and Irish Literatures", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eaverly, Mary Ann", + "ISBN": "0472103512; 9780472103515", + "OCLC": "32469300", + "File ID 1": "39015040605860", + "Title": "Archaic Greek equestrian sculpture ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "|Art - Architecture|Classical Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dettmar, Kevin JH; Watt, Stephen", + "ISBN": "0472096419; 9780472096411; 0472066412; 9780472066414", + "OCLC": "35360539", + "File ID 1": "39015040654561", + "Title": "Marketing modernisms : self-promotion, canonization, rereading ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Literary Studies - Modern Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Maurer, Bill", + "ISBN": "0472108115; 9780472108114", + "OCLC": "36029709", + "File ID 1": "39015041062640", + "Title": "Recharting the Caribbean : land, law, and citizenship in the British Virgin Islands ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|Law|Caribbean Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marney, John", + "ISBN": "0472084046; 9780472084043", + "OCLC": "37010440", + "File ID 1": "39015041086961", + "Title": "Chinese by numbers : first semester ", + "Contributors": "edited by Steven Marney", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|Foreign Language - Asian Languages", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marney, John", + "ISBN": "0472084240; 9780472084241", + "OCLC": "37354191", + "File ID 1": "39015041086987", + "Title": "Chinese by the book : second semester ", + "Contributors": "edited by Steven Marney", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|Foreign Language - Asian Languages", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marney, John", + "ISBN": "0472084348; 9780472084340", + "OCLC": "37354192", + "File ID 1": "39015041087001", + "Title": "Chinese by bygones : third semester ", + "Contributors": "edited by Steven Marney", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|Foreign Language - Asian Languages", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Marney, John", + "ISBN": "0472084046; 9780472084043", + "OCLC": "37354193", + "File ID 1": "39015041087027", + "Title": "Chinese to a T : fourth semester ", + "Contributors": "edited by Steven Marney", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|Foreign Language - Asian Languages", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gareis, Elisabeth", + "ISBN": "0472084119; 9780472084111", + "OCLC": "37599764", + "File ID 1": "39015041120588", + "Title": "Being there : student workbook ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Booker, M Keith", + "ISBN": "0472107801; 9780472107803", + "OCLC": "36008544", + "File ID 1": "39015041290621", + "Title": "Colonial power, colonial texts : India in the modern British novel ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - British and Irish Literatures|Literary Studies - Modern Literature|Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gmelch, George; Gmelch, Sharon Bohn", + "ISBN": "0472096265; 9780472096268; 0472066269; 9780472066261", + "OCLC": "36037954", + "File ID 1": "39015041319396", + "Title": "The parish behind God's back : the changing culture of rural Barbados ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Caribbean Studies|Anthropology|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Endelman, Todd M", + "ISBN": "0472095927; 9780472095926; 0472065920; 9780472065929", + "OCLC": "36681639", + "File ID 1": "39015041533913", + "Title": "Comparing Jewish societies ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|Sociology|Religion", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Szendeffy, John de", + "ISBN": "047208397X; 9780472083978", + "OCLC": "38043561", + "File ID 1": "39015041754501", + "Title": "For here or to go? ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Reading", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "McDonough, John E", + "ISBN": "0472108883; 9780472108886", + "OCLC": "37748399", + "File ID 1": "39015041768428", + "Title": "Interests, ideas, and deregulation : the fate of hospital rate setting ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Health & Medicine - Health Policy & Management|Economics - Labor, Health, and Educational Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Damon, Cynthia", + "ISBN": "0472107607; 9780472107605", + "OCLC": "37398038", + "File ID 1": "39015041768485", + "Title": "The mask of the parasite : a pathology of Roman patronage ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Mitchell, Neil James", + "ISBN": "0472108182; 9780472108183", + "OCLC": "36446788", + "File ID 1": "39015041776454", + "Title": "The conspicuous corporation : business, public policy, and representative democracy ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - Political Economy|Political Science - American Politics|Political Science - Comparative Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brecher, Michael; Wilkenfield, Jonathan", + "ISBN": "0472108069; 9780472108060", + "OCLC": "36470155", + "File ID 1": "39015041776488", + "Title": "A study of crisis ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Political Science - International Relations|Economics - International Economics|Latin American Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gilliom, John", + "ISBN": "047208416X; 9780472084166", + "OCLC": "37598601", + "File ID 1": "39015041778500", + "Title": "Surveillance, privacy, and the law : employee drug testing and the politics of social control ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Law||Political Science - American Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gilbert, Helen", + "ISBN": "047209677X; 9780472096770; 0472066773; 9780472066773", + "OCLC": "38390621", + "File ID 1": "39015042048846", + "Title": "Sightlines : race, gender, and nation in contemporary Australian theatre ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Gender Studies|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Barr, Richard Lewis", + "ISBN": "0472108735; 9780472108732", + "OCLC": "38732100", + "File ID 1": "39015042048903", + "Title": "Rooms with a view : the stages of community in the modern theater ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Golub, Spencer", + "ISBN": "0472110365; 9780472110360", + "OCLC": "40901005", + "File ID 1": "39015042092141", + "Title": "Infinity (stage) ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Garner, Stanton B", + "ISBN": "0472110659; 9780472110650", + "OCLC": "40805420", + "File ID 1": "39015042099526", + "Title": "Trevor Griffiths : politics, drama, history ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory|Literary Studies - British and Irish Literatures", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Merrell, Floyd", + "ISBN": "0472108603; 9780472108602", + "OCLC": "37813512", + "File ID 1": "39015042144124", + "Title": "Simplicity and complexity : pondering literature, science, and painting ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - Literature and Science|Literary Studies - British and Irish Literatures|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Maskus, Keith E", + "ISBN": "0472108395; 9780472108398", + "OCLC": "37513158", + "File ID 1": "39015042152697", + "Title": "Quiet pioneering : Robert M. Stern and his international economic legacy ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eller, Jack David", + "ISBN": "0472109618; 9780472109616; 0472085387; 9780472085385", + "OCLC": "39615476", + "File ID 1": "39015042767734", + "Title": "From culture to ethnicity to conflict : an anthropological perspective on international ethnic conflict ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|History|European Studies - Eastern European Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Boychuk, Terry", + "ISBN": "0472109286; 9780472109289", + "OCLC": "40533842", + "File ID 1": "39015042768526", + "Title": "The making and meaning of hospital policy in the United States and Canada ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "|Health & Medicine - Health Policy & Management|Sociology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gem\u00fcnden, Gerd", + "ISBN": "0472109472; 9780472109470; 0472085603; 9780472085606", + "OCLC": "39639974", + "File ID 1": "39015042821432", + "Title": "Framed visions : popular culture, Americanization, and the contemporary German and Austrian imagination ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History|Literary Studies - European Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "McElligott, Anthony", + "ISBN": "0472109294; 9780472109296", + "OCLC": "39169900", + "File ID 1": "39015042825557", + "Title": "Contested city : municipal politics and the rise of Nazism in Altona, 1917-1937 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History|Political Science - Comparative Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brainard, Cecilia Manguerra", + "ISBN": "0472086375; 9780472086375", + "OCLC": "41482193", + "File ID 1": "39015043005779", + "Title": "When the rainbow goddess wept ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|Fiction", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Malkin, Jeanette R", + "ISBN": "0472110373; 9780472110377", + "OCLC": "40943318", + "File ID 1": "39015043006942", + "Title": "Memory-theater and postmodern drama ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eliasson, Gunnar; Green, Christopher; McCann, Charles R", + "ISBN": "0472109049; 9780472109043", + "OCLC": "38311794", + "File ID 1": "39015043122418", + "Title": "Microfoundations of economic growth : a Schumpeterian perspective ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - Industrial Organization||Economics - System -- Development", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gareis, Elisabeth", + "ISBN": "047208495X; 9780472084951", + "OCLC": "39731729", + "File ID 1": "39015043122657", + "Title": "Fried green tomatoes : student workbook ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ferguson, Moira", + "ISBN": "0472108743; 9780472108749", + "OCLC": "37694885", + "File ID 1": "39015043125791", + "Title": "Animal advocacy and Englishwomen, 1780-1900 : patriots, nation, and empire ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - 19th Century Literature|Literary Studies - British and Irish Literatures|Gender Studies - Women's Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472083724; 9780472083725", + "OCLC": "40457886", + "File ID 1": "39015043184376", + "Title": "Clear grammar 2 : activities for spoken and written communication ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Boal, Dean", + "ISBN": "9780472108824", + "OCLC": "38580125", + "File ID 1": "39015043186561", + "Title": "Interlochen: a home for the arts", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|Michigan and the Great Lakes - Music|Music", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Banes, Sally", + "ISBN": "0472096788; 9780472096787; 0472066781; 9780472066780", + "OCLC": "38930519", + "File ID 1": "39015043211179", + "Title": "Subversive expectations : performance art and paratheater in New York, 1976-85 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Millar, Fergus", + "ISBN": "0472108921; 9780472108923", + "OCLC": "38096956", + "File ID 1": "39015043238438", + "Title": "The crowd in Rome in the late Republic ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Roman|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dutton, Paul Edward; Kessler, Herbert L", + "ISBN": "0472108158; 9780472108152", + "OCLC": "36739491", + "File ID 1": "39015047063097", + "Title": "The poetry and paintings of the First Bible of Charles the Bald ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Medieval and Renaissance Studies|Literary Studies - European Literature|Classical Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Morley, Joan", + "ISBN": "0472081284; 9780472081288", + "OCLC": "26019237", + "File ID 1": "39015047082568", + "Title": "Intensive consonant pronunciation practice : improving spoken English : consonants in context ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Curzan, Anne; Damour, Lisa", + "ISBN": "0472097326; 9780472097326; 047206732X; 9780472067329", + "OCLC": "43207097", + "File ID 1": "39015049631511", + "Title": "First day to final grade : a graduate student's guide to teaching ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education|Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Goldman, Michael", + "ISBN": "047211011X; 9780472110117", + "OCLC": "43661929", + "File ID 1": "39015049657870", + "Title": "On drama : boundaries of genre, borders of self ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - Literary Criticism and Theory", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gareis, Elizabeth", + "ISBN": "047208545X; 9780472085453", + "OCLC": "46368436", + "File ID 1": "39015049705976", + "Title": "Field of dreams : a teacher resource book ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cole, Tom", + "ISBN": "0472086391; 9780472086399", + "OCLC": "44542340", + "File ID 1": "39015049712642", + "Title": "The article book : practice toward mastering a, an, and the ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S (et. al.)", + "ISBN": "0472086545; 9780472086542", + "OCLC": "44409843", + "File ID 1": "39015049972071", + "Title": "100 clear grammar tests : reproducible grammar tests for beginning to intermediate ESL/EFL classes", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Steven; Attardo, Salvatore", + "ISBN": "0472086863; 9780472086863", + "OCLC": "43615339", + "File ID 1": "39015050034423", + "Title": "Understanding language structure, interaction, and variation : an introduction to applied linguistics and sociolinguistics for nonspecialists ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Applied Linguistics & Linguistics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brook, Timothy; Luong, Hy V", + "ISBN": "0472085980; 9780472085989", + "OCLC": "41391464", + "File ID 1": "39015050037590", + "Title": "Culture and economy : the shaping of capitalism in eastern Asia ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|History|Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Deutsch, Helen; Nussbaum, Felicity", + "ISBN": "0472096982; 9780472096985; 0472066986; 9780472066988", + "OCLC": "41940076", + "File ID 1": "39015050165730", + "Title": "Defects : engendering the modern body ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Disability Studies|Literary Studies - British and Irish Literatures|Literary Studies - 18th Century Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Mills, Linda G", + "ISBN": "0472109502; 9780472109500", + "OCLC": "40660090", + "File ID 1": "39015050184616", + "Title": "A penchant for prejudice : unraveling bias in judicial decision making ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Law|Political Science - American Politics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Friel, Brian", + "ISBN": "0472097105; 9780472097104; 0472067109; 9780472067107", + "OCLC": "42397432", + "File ID 1": "39015050243313", + "Title": "Brian Friel in conversation ", + "Contributors": "edited by Paul Delaney", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Literary Studies - British and Irish Literatures|Cultural Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Baldwin, Robert E; Chen, Tain-Jy; Nelson, Douglas", + "ISBN": "0472105515; 9780472105519", + "OCLC": "32350003", + "File ID 1": "39015050311441", + "Title": "Political economy of U.S.-Taiwan trade ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Steven; Attardo, Salvatore", + "ISBN": "0472087614; 9780472087617", + "OCLC": "50766054", + "File ID 1": "39015051805235", + "Title": "Quiz booklet to accompany Understanding language structure, interaction, and variation ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472087290; 9780472087297", + "OCLC": "48388032", + "File ID 1": "39015052404426", + "Title": "Clear grammar 3 student workbook : more activities for spoken and written communication ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2001", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Matthews, Jenny", + "ISBN": "0472089641; 9780472089642", + "OCLC": "52765937", + "File ID 1": "39015052545806", + "Title": "Women and war ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2003", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies|Political Science - International Relations|Art - Architecture", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Becker, Peter; Clark, William", + "ISBN": "0472111086; 9780472111084", + "OCLC": "43296788", + "File ID 1": "39015053140060", + "Title": "Little tools of knowledge : historical essays on academic and bureaucratic practices ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2001", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Blackman, Deane R. Hodge, A Trevor", + "ISBN": "0472097938; 9780472097937; 0472067931; 9780472067930", + "OCLC": "47183660", + "File ID 1": "39015053183680", + "Title": "Frontinus' legacy : essays on Frontinus' De aquis urbis Romae ", + "Contributors": "with contributions from K. Grewe, Ph. Leveau, N.A.F. Smith", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2001", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Archaeology - Roman||Classical Studies - Roman", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Buss, Fran Leeper", + "ISBN": "0472087126; 9780472087129", + "OCLC": "44650925", + "File ID 1": "39015053490440", + "Title": "La partera : story of a midwife ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2000", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Gender Studies|Health & Medicine|Native American Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ferman, Louis A; Kornbluth, Joyce L; Miller, J A", + "ISBN": "", + "OCLC": "418122", + "File ID 1": "39015054033678", + "Title": "Negroes and jobs; a book of readings", + "Contributors": "Foreword by A. Philip Randolph", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1968", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Baumler, Alan", + "ISBN": "0472097687; 9780472097685; 0472067680; 9780472067688", + "OCLC": "47183531", + "File ID 1": "39015054123107", + "Title": "Modern China and opium : a reader ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2001", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Asian Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Maggi, Wynne", + "ISBN": "0472097830; 9780472097838; 0472067834; 9780472067831", + "OCLC": "47200317", + "File ID 1": "39015054168185", + "Title": "Our women are free : gender and ethnicity in the Hindukush ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2001", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology|Asian Studies|Gender Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Maskus, Keith E; Wilson, John S", + "ISBN": "0472112473; 9780472112470", + "OCLC": "48153732", + "File ID 1": "39015054293272", + "Title": "Quantifying the impact of technical barriers to trade : can it be done? ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2001", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - International Economics|Political Science - Political Economy", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bodel, John P", + "ISBN": "0472080393; 9780472080397", + "OCLC": "9110516", + "File ID 1": "39015054402113", + "Title": "Roman brick stamps in the Kelsey Museum ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1983", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Roman|Archaeology - Roman", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gagos, Traianos; van Minnen, Peter", + "ISBN": "0472065904; 9780472065905", + "OCLC": "31074882", + "File ID 1": "39015055904778", + "Title": "Settling a dispute : toward a legal anthropology of late antique Egypt ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1994", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Blanton, Linda Lonon; Kroll, Barbara", + "ISBN": "0472088912; 9780472088911", + "OCLC": "49698975", + "File ID 1": "39015056167219", + "Title": "ESL composition tales : reflections on teaching ", + "Contributors": "introduction by Dana Ferris ; epilogue by Paul Kei Matsuda", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2002", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Composition|Applied Linguistics & Linguistics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S; Ivone, Jeanine", + "ISBN": "0472088556; 9780472088553", + "OCLC": "50599661", + "File ID 1": "39015056204681", + "Title": "More discussion starters : activities for building speaking fluency ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2002", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fentress, Elizabeth; Bodel, John", + "ISBN": "0472113631; 9780472113637", + "OCLC": "52542023", + "File ID 1": "39015056822326", + "Title": "Cosa V : an intertmittent town, excavations 1991-1997 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2003", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Archaeology - Roman|Art - Architecture|Classical Studies - Roman", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Downey, Susan B", + "ISBN": "0472112376; 9780472112371", + "OCLC": "51559127", + "File ID 1": "39015056848370", + "Title": "Terracotta figurines and plaques from Dura-Europos ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2003", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Archaeology - Roman|Art - Architecture|Classical Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Flaitz, Jeffra; Eckstein, Leslie Kosel", + "ISBN": "0472088661; 9780472088669", + "OCLC": "51910332", + "File ID 1": "39015056949350", + "Title": "Understanding your international students : an educational, cultural, and linguistic guide ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2003", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S; Ivone, Jeanine", + "ISBN": "0472088955; 9780472088959", + "OCLC": "55010533", + "File ID 1": "39015057011127", + "Title": "First discussion starters : speaking fluency activities for beginning and low-intermediate ESL/EFL students", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2002", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472088874; 9780472088874", + "OCLC": "52641272", + "File ID 1": "39015058729206", + "Title": "Clear grammar 4 student workbook : more activities for spoken and written communication ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2003", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472088866; 9780472088867", + "OCLC": "53126468", + "File ID 1": "39015058729578", + "Title": "Clear grammar 4 : activities for spoken and written communication ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2003", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472030299; 9780472030293", + "OCLC": "54774786", + "File ID 1": "39015061323906", + "Title": "Vocabulary myths : applying second language research to classroom teaching ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2004", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Applied Linguistics & Linguistics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472030132; 9780472030132", + "OCLC": "55204632", + "File ID 1": "39015061326172", + "Title": "Intermediate reading practices : building reading and vocabulary skills ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2004", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Reading", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Giannotti, Janet", + "ISBN": "0472089331; 9780472089338", + "OCLC": "56892813", + "File ID 1": "39015061756774", + "Title": "Crafting compositions : tools for today's writers ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2004", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bell, Malcolm", + "ISBN": "9780472109166", + "OCLC": "659971997", + "File ID 1": "39015061939768", + "Title": "Memoirs of the American Academy in Rome", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies|History|Medieval and Renaissance Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dirks, Nicholas B.", + "ISBN": "9780472094349", + "OCLC": "25202946", + "File ID 1": "39015062110435", + "Title": "Colonialism and Culture", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1992", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|Anthropology|Asian Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cavers, David Farquhar", + "ISBN": "", + "OCLC": "250109", + "File ID 1": "39015062400075", + "Title": "The choice-of-law process", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Goldstein, Laurence; Konigsberg, Ira", + "ISBN": "0472096400; 9780472096404; 0472066404; 9780472066407; 0472105086; 9780472105083", + "OCLC": "35325252", + "File ID 1": "39015062418069", + "Title": "The movies : texts, receptions, exposures ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1996", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Cultural Studies|Media and Communication - Cinema Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ericksen, Stanford Clark", + "ISBN": "0472083139; 9780472083138", + "OCLC": "999004", + "File ID 1": "39015062418234", + "Title": "Motivation for learning; a guide for the teacher of the young adult", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1974", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "De George, Richard T", + "ISBN": "", + "OCLC": "370658", + "File ID 1": "39015062420123", + "Title": "Patterns of Soviet thought; the origins and development of dialectical and historical materialism", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1966", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Morley, Joan", + "ISBN": "", + "OCLC": "6820494", + "File ID 1": "39015062431880", + "Title": "Improving aural comprehension: student's workbook ", + "Contributors": "under the auspices of the English Language Institute at the University of Michigan", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1972", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Morley, Joan", + "ISBN": "0472086669; 9780472086665", + "OCLC": "700255", + "File ID 1": "39015062432904", + "Title": "Improving aural comprehension : teacher's book of readings ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1973, 1972", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Goldberg, Sally", + "ISBN": "0472063642; 9780472063642", + "OCLC": "12051110", + "File ID 1": "39015062432912", + "Title": "Growing with games : making your own educational games ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1985", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Crawford, Grace A", + "ISBN": "", + "OCLC": "20950937", + "File ID 1": "39015063160488", + "Title": "Teacher's manual for Elementary Latin : the basic structures ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Albert, Dennis A", + "ISBN": "9780472031726; 0472031724", + "OCLC": "63703519", + "File ID 1": "39015063318938", + "Title": "Borne of the wind : an introduction to the ecology of Michigan's sand dunes ", + "Contributors": "editors, David Ewert et al.", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2006", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Nature|Nature/Environment - Natural Resources|Michigan and the Great Lakes - Natural Resources", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bernstein, Robin", + "ISBN": "9780472099337; 0472099337; 9780472069330; 0472069330", + "OCLC": "63116969", + "File ID 1": "39015064702999", + "Title": "Cast out : queer lives in theater ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2006", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|Gender Studies - Gay and Lesbian Studies|American Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gile, Marie A; Marzolf, Marion T", + "ISBN": "9780472031139; 0472031139", + "OCLC": "62281626", + "File ID 1": "39015064703039", + "Title": "Fascination with fiber : Michigan's handweaving heritage ", + "Contributors": "in partnership with the Michigan State University Museum", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2006", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Art|Michigan and the Great Lakes - Art", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Friedrichsmeyer, Sara; Lennox, Sara; Zantop, Susanne", + "ISBN": "0472096826; 9780472096824; 047206682X; 9780472066827", + "OCLC": "39679479", + "File ID 1": "39015066087555", + "Title": "The imperialist imagination : German colonialism and its legacy ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1998", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History|Literary Studies - European Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Curzan, Anne; Damour, Lisa", + "ISBN": "9780472031887; 0472031880", + "OCLC": "75860350", + "File ID 1": "39015066789655", + "Title": "First day to final grade : a graduate student's guide to teaching ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2006", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education - Higher Education|Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dedijer, Vladimir", + "ISBN": "9780472750986; 0472750984", + "OCLC": "7380721807", + "File ID 1": "39015071171923", + "Title": "The war diaries of Vladimir Dedijer", + "Contributors": "Introd. by John V. A. Fine, Jr.", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|European Studies - Eastern European Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dedijer, Vladimir", + "ISBN": "9780472750993; 0472750992", + "OCLC": "7380681250", + "File ID 1": "39015071171931", + "Title": "The war diaries of Vladimir Dedijer ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|European Studies - Eastern European Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dedijer, Vladimir", + "ISBN": "9780472751006; 047275100X", + "OCLC": "7380681181", + "File ID 1": "39015071171949", + "Title": "The war diaries of Vladimir Dedijer ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|European Studies - Eastern European Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Carr, Robert W", + "ISBN": "0472094408; 9780472094400; 0472064401; 9780472064403", + "OCLC": "21373280", + "File ID 1": "39015071179041", + "Title": "Government of Michigan ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brazer, Harvey E; Laren, Deborah S; ", + "ISBN": "047210022X; 9780472100224; 047208027X; 9780472080274", + "OCLC": "8032118", + "File ID 1": "39015071212875", + "Title": "Michigan's fiscal and economic structure ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1982", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eustis, O B", + "ISBN": "0472063464; 9780472063468", + "OCLC": "9931888", + "File ID 1": "39015071239050", + "Title": "Notes from the north country ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1983", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Nature|Literary Studies - Essay and Interview", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cartwright, David", + "ISBN": "0472106953; 9780472106950; 0472084194; 9780472084197", + "OCLC": "35651082", + "File ID 1": "39015073883095", + "Title": "A historical commentary on Thucydides : a companion to Rex Warner's Penguin translation ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1997", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "History|Classical Studies|Archaeology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Homer", + "ISBN": "9780472116171; 0472116177", + "OCLC": "131070053", + "File ID 1": "39015074241673", + "Title": "The iliad; translated by Rodney Merrill", + "Contributors": "translated by Rodney Merrill", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2007", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies - Greek|Literary Studies - Poetry and Poetry Criticism", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bloch, Joel", + "ISBN": "0472032100; 9780472032105", + "OCLC": "179829664", + "File ID 1": "39015079156488", + "Title": "Technologies in the second language composition classroom ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2008", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Belcher, Diane; Hirvela, Alan", + "ISBN": "0472032321; 9780472032327", + "OCLC": "262883113", + "File ID 1": "39015079156827", + "Title": "The oral-literate connection : perspectives on L2 speaking, writing, and other media interactions ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2008", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)|Composition", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Fox, Pamela; Ching, Barbara", + "ISBN": "0472070533; 9780472070534; 0472050532; 9780472050536", + "OCLC": "226357776", + "File ID 1": "39015079198613", + "Title": "Old roots, new routes : the cultural politics of alt.country music ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2008", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "American Studies|Music|Class Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Geis, Deborah R", + "ISBN": "0472099469; 9780472099467; 0472069462; 9780472069460", + "OCLC": "213385031", + "File ID 1": "39015079246602", + "Title": "Suzan-Lori Parks ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2008", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Theater and Performance|African-American and African Studies|Literary Studies - American Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Pearson Casanave, Christine; Li, Xiaoming; ", + "ISBN": "9780472032310; 0472032313", + "OCLC": "226303492", + "File ID 1": "39015079246750", + "Title": "Learning the literacy practices of graduate school : insiders' reflections on academic enculturation ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2008", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|Education - Higher Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S.; Coombe, Christine A.; Hubley, Nancy J.", + "ISBN": "9780472032013", + "OCLC": "77503849", + "File ID 1": "39015079248962", + "Title": "A Practical Guide to Assessing English Language Learners", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2007", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Applied Linguistics & Linguistics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Palmer, Adrian S; Christison, MaryAnn", + "ISBN": "0472032267; 9780472032266", + "OCLC": "154666458", + "File ID 1": "39015079249242", + "Title": "Seeking the heart of teaching ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2007", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Acs, Zoltan J; Audretsch, David B", + "ISBN": "0472102494; 9780472102495", + "OCLC": "22710372", + "File ID 1": "39015080703930", + "Title": "Innovation and technological change : an international comparison ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1991", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Economics - Industrial Organization|Economics - International Economics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Folse, Keith S", + "ISBN": "0472083732; 9780472083732", + "OCLC": "41598838", + "File ID 1": "39015080704482", + "Title": "Clear grammar 3 : activities for spoken and written communication ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1999", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Canagarajah, A Suresh", + "ISBN": "047208853X; 9780472088539", + "OCLC": "49727600", + "File ID 1": "39015080713368", + "Title": "Critical academic writing and multilingual students ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2002", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Steven; Attardo, Salvatore; Vigliotti, Cynthia", + "ISBN": "9780472030682; 047203068X", + "OCLC": "62390669", + "File ID 1": "39015080713731", + "Title": "Workbook for Understanding language structure, interaction, and variation : an introduction to applied linguistics and sociolinguistics for nonspecialists ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2005", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, Steven; Attardo, Salvatore ", + "ISBN": "0472030388; 9780472030385", + "OCLC": "60404845", + "File ID 1": "39015080713889", + "Title": "Understanding language structure, interaction, and variation : an introduction to applied linguistics and sociolinguistics for nonspecialists ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2005", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Ferris, Dana", + "ISBN": "9780472033379", + "OCLC": "319492220", + "File ID 1": "39015080726238", + "Title": "Teaching College Writing to Diverse Student Populations", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2009", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Applied Linguistics & Linguistics", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Frisancho, A Roberto", + "ISBN": "0472101463; 9780472101467", + "OCLC": "20932481", + "File ID 1": "39015080736187", + "Title": "Anthropometric standards for the assessment of growth and nutritional status ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1990", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cavusgil, Sharon L", + "ISBN": "9780472082940; 0472082949", + "OCLC": "37433046", + "File ID 1": "39015080736559", + "Title": "The road to healthy living ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1995", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Eastman, Arthur M; Harrison, G B", + "ISBN": "", + "OCLC": "682264", + "File ID 1": "39015082243927", + "Title": "Shakespeare's critics : from Jonson to Auden, a medley of judgments ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1964", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Dempsey, Dave", + "ISBN": "0472116495; 9780472116492", + "OCLC": "181142756", + "File ID 1": "39015082696702", + "Title": "Great Lakes for sale : from whitecaps to bottlecaps ", + "Contributors": "foreword by Bart Stupak", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2008", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Michigan and the Great Lakes - Environmental Studies|Nature/Environment - Environmental Studies|Michigan and the Great Lakes - History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gebhard, Jerry Greer", + "ISBN": "0472034065; 9780472034062", + "OCLC": "639940351", + "File ID 1": "39015084036444", + "Title": "What do international students think and feel? : adapting to U.S. college life and culture ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2010", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Crusan, Deborah", + "ISBN": "0472034197; 9780472034192", + "OCLC": "631749996", + "File ID 1": "39015084048704", + "Title": "Assessment in the second language writing classroom ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2010", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)|Composition", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Inga D\u00f3ra Bj\u00f6rnsd\u00f3ttir", + "ISBN": "0472117262; 9780472117260", + "OCLC": "466344572", + "File ID 1": "39015086064907", + "Title": "\u00d3l\u00f6f the Eskimo lady : a biography of an Icelandic dwarf in America ", + "Contributors": "English translator, Mar\u00eda Helga Gu\u00f0mundsd\u00f3ttir", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2010", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Anthropology - Cultural Anthropology|Biography|American Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Aspel, Alexander", + "ISBN": "", + "OCLC": "923900", + "File ID 1": "39015087419027", + "Title": "Contemporary French poetry;", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Bader, Arno Lehman", + "ISBN": "", + "OCLC": "1626553", + "File ID 1": "39015087419266", + "Title": "To the young writer : Hopwood lectures, second series ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1965", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Brown, George G.", + "ISBN": "", + "OCLC": "6104319", + "File ID 1": "39015087419290", + "Title": "The volatility of motor fuels", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Berman, Nina", + "ISBN": "0472117513; 9780472117512", + "OCLC": "617524399", + "File ID 1": "39015087848969", + "Title": "German literature on the Middle East : discourses and practices, 1000-1989 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History - German History|Literary Studies - European Literature", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Becker, Jeffrey A; Terrenato, Nicola", + "ISBN": "047211770X; 9780472117703", + "OCLC": "687681114", + "File ID 1": "39015088105591", + "Title": "Roman republican villas : architecture, context, and ideology ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2012", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Archaeology - Roman|Classical Studies - Roman", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gabrys, Jennifer", + "ISBN": "0472117610; 9780472117611", + "OCLC": "617524382", + "File ID 1": "39015088390623", + "Title": "Digital rubbish : a natural history of electronics ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Cultural Studies|Media and Communication - New Media", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Belcher, Diane D.; Johns, Ann M.; Paltridge, Brian", + "ISBN": "9780472034604", + "OCLC": "701807069", + "File ID 1": "39015088391548", + "Title": "New Directions in English for Specific Purposes Research", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|English as a Second Language (ESL)", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Goldschmidt, Myra M.; Ousey, Debbie Lamp", + "ISBN": "9780472034345", + "OCLC": "699759084", + "File ID 1": "39015088393635", + "Title": "Teaching developmental immigrant students in undergraduate programs : a practical guide", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|Education", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Gelbin, Cathy S", + "ISBN": "0472117599; 9780472117598", + "OCLC": "617508988", + "File ID 1": "39015088401297", + "Title": "The golem returns : from German romantic literature to global Jewish culture, 1808-2008 ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "German Studies|History - German History|Jewish Studies", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Carlock, Janine; Eberhardt, Maeve; Horst, Jaime; Menasche, Lionel", + "ISBN": "0472035347; 9780472035342", + "OCLC": "816512650", + "File ID 1": "39015089984390", + "Title": "The condensed ESL writer's handbook ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2013", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "English as a Second Language (ESL)|Composition", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Cline , Eric H; O'Connor, David", + "ISBN": "0472117602; 9780472117604", + "OCLC": "617508992", + "File ID 1": "39015090271761", + "Title": "Ramesses III : the life and times of Egypt's last hero ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Classical Studies|History", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Arnold, Matthew", + "ISBN": "", + "OCLC": "183163", + "File ID 1": "39015091349970", + "Title": "Democratic Education", + "Contributors": "R. H. Super ", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1962", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Literary Studies - 19th Century Literature|Literary Studies - British and Irish Literatures", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Belcher, Diane; Nelson, Gayle", + "ISBN": "9780472035243; 047203524X", + "OCLC": "824530721", + "File ID 1": "39015091938657", + "Title": "Critical and corpus-based approaches to intercultural rhetoric ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2013", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Applied Linguistics & Linguistics|Composition", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Curzan, Anne; Damour, Lisa", + "ISBN": "0472034510; 9780472034512", + "OCLC": "702371650", + "File ID 1": "39015091962475", + "Title": "First day to final grade : a graduate student's guide to teaching ", + "Contributors": "", + "Copyright holder": "Publisher", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "2011", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "Education|Reference", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + }, + { + "Author(s)": "Meier, August", + "ISBN": "", + "OCLC": "11522231", + "File ID 1": "39015012437623", + "Title": "Negro Thought in America, 1880-1915", + "Contributors": "", + "Copyright holder": "", + "Publisher (from Projects)": "University of Michigan Press", + "Projects": "UofMichigan Backlist", + "Project status": "Ready to go", + "Pub Date": "1966", + "Rights status (from Rights status linked record)": "publisher-controlled", + "Rights classification by publisher": "A", + "Subject 1": "", + "Access in DRB": "Limited Access / authentication required", + "Digital copy received": "checked", + "Project steps": "Ingest files,QA test", + "Next step (from Project steps)": "Ready to ingest,QA test", + "Date of ingest": "", + "Status updated on": "1/19/2024" + } + ] +} \ No newline at end of file diff --git a/ingestJSONFiles/chicagoISAC_metadata.json b/ingestJSONFiles/chicagoISAC_metadata.json new file mode 100644 index 0000000000..ba6a67baf4 --- /dev/null +++ b/ingestJSONFiles/chicagoISAC_metadata.json @@ -0,0 +1,8149 @@ +[ + { + "title": "Studies Presented to Robert D. Biggs, June 4, 2004 From the Workshop of the Chicago Assyrian Dictionary, Volume 2", + "authors": [ + "Martha T. Roth", + "Walter Farber", + "Matthew W. Stolper,Paula von Bechtolsheim," + ], + "series": "Assyriological Studies 27", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2007", + "isbn": "9781885923448", + "extent": "Pp. liv + 362; 40 illustrations, 9 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as27.pdf" + ] + }, + { + "title": "Perspectives on Hittite Civilization: Selected Writings of Hans G. Güterbock.", + "authors": [ + "H. A. Hoffner", + "Jr.," + ], + "series": "Assyriological Studies 26", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1997", + "isbn": "9781885923042", + "extent": "Pp. xi + 274; 49 illustrations, 3 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as26.pdf" + ] + }, + { + "title": "The Hittite State Cult of the Tutelary Deities.", + "authors": [ + "G. McMahon." + ], + "series": "Assyriological Studies 25", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "0918986699", + "extent": "Pp. xxi + 302; no illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as25.pdf" + ] + }, + { + "title": "The Hittite Instruction for the Royal Bodyguard.", + "authors": [ + "Hans G. GüterbockTheo P. J. van den Hout." + ], + "series": "Assyriological Studies 24", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "", + "extent": "Pp. xvi + 99", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as24.pdf" + ] + }, + { + "title": "Kanissuwar - A Tribute to Hans G. Güterbock on His Seventy-Fifth Birthday, May 27, 1983.", + "authors": [ + "H. A. Hoffner", + "Jr.G. M. Beckman," + ], + "series": "Assyriological Studies 23", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1986", + "isbn": "0918986443", + "extent": "Pp. vii + 203; 39 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as23.pdf" + ] + }, + { + "title": "Old Babylonian Letters from Tell Asmar.", + "authors": [ + "R. M. Whiting", + "Jr." + ], + "series": "Assyriological Studies 22", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1987", + "isbn": "0918986478", + "extent": "Pp. xiii + 177; 27 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as22.pdf" + ] + }, + { + "title": "Computer-aided Analysis of Amorite.", + "authors": [ + "Ignace J. Gelb", + "with the assistance of J. Bartls", + "S.–M. Vance,R. M. Whiting." + ], + "series": "Assyriological Studies 21", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1980", + "isbn": "", + "extent": "Pp. xv + 657", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as21.pdf" + ] + }, + { + "title": "Sumerological Studies in Honor of Thorkild Jacobsen on His Seventieth Birthday June 7, 1974.", + "authors": [ + "S. J. Lieberman," + ], + "series": "Assyriological Studies 20", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1976", + "isbn": "9780226622828", + "extent": "Pp. xiv + 316; no illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as20.pdf" + ] + }, + { + "title": "The Akkadian Influences on Aramaic.", + "authors": [ + "Stephen Kaufman." + ], + "series": "Assyriological Studies 19", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1974", + "isbn": "", + "extent": "Pp. xiii + 196", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as19.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as19_errata.pdf" + ] + }, + { + "title": "Sequential Reconstruction of Proto-Akkadian.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Assyriological Studies 18", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1969", + "isbn": "", + "extent": "Pp. xxxii + 244", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as18.pdf" + ] + }, + { + "title": "Cuneiform Texts from Nippur: The Eighth and Ninth Seasons.", + "authors": [ + "Giorgio BuccellatiRobert D. Biggs." + ], + "series": "Assyriological Studies 17", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1969", + "isbn": "", + "extent": "Pp. ix + 16; 58 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as17.pdf" + ] + }, + { + "title": "Studies in Honor of Benno Landsberger on His Seventy-Fifth Birthday, April 21, 1963.", + "authors": [ + "Hans G. GüterbockThorkild Jacobsen," + ], + "series": "Assyriological Studies 16", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1965", + "isbn": "", + "extent": "Pp. viii + 448; frontispiece (Benno Landsberger); 29 pages with illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as16.pdf" + ] + }, + { + "title": "The Second Dynasty of Isin According to A New King-List Tablet.", + "authors": [ + "Arno Poebel." + ], + "series": "Assyriological Studies 15", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1955", + "isbn": "", + "extent": "Pp. viii + 41; 2 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as15.pdf" + ] + }, + { + "title": "Miscellaneous Studies.", + "authors": [ + "Arno Poebel." + ], + "series": "Assyriological Studies 14", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1947", + "isbn": "", + "extent": "Pp. viii + 122; 1 illustration", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as14.pdf" + ] + }, + { + "title": "The System of The Quadriliteral Verb in Akkadian.", + "authors": [ + "Alexander Heidel." + ], + "series": "Assyriological Studies 13", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xvii + 141", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as13.pdf" + ] + }, + { + "title": "Lamentation Over the Destruction of Ur.", + "authors": [ + "Samuel N. Kramer." + ], + "series": "Assyriological Studies 12", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xii + 97; 4 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as12.pdf" + ] + }, + { + "title": "The Sumerian King List.", + "authors": [ + "Thorkild Jacobsen." + ], + "series": "Assyriological Studies 11", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chricago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xvi + 216; 1 plate, 2 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as11.pdf" + ] + }, + { + "title": "Gilgamesh and the Ḫuluppu-Tree: A Reconstructed Sumerian Text.", + "authors": [ + "Samuel N. Kramer." + ], + "series": "Assyriological Studies 10", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. x + 64", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as10.pdf" + ] + }, + { + "title": "Studies in Akkadian Grammar.", + "authors": [ + "Arno Poebel." + ], + "series": "Assyriological Studies 9", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xxv + 196", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as9.pdf" + ] + }, + { + "title": "The Sumerian Prefix Forms BE- and BI- in the Time of the Earlier Princes of Lagaš.", + "authors": [ + "Samuel N. Kramer." + ], + "series": "Assyriological Studies 8", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. x + 29", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as8.pdf" + ] + }, + { + "title": "The Chicago Syllabary and the Louvre Syllabary AO 7661.", + "authors": [ + "Richard T. Hallock." + ], + "series": "Assyriological Studies 7", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xiv + 79; 10 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as7.pdf" + ] + }, + { + "title": "Philological Notes on Eshnunna and Its Inscriptions.", + "authors": [ + "Thorkild Jacobsen." + ], + "series": "Assyriological Studies 6", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. xiv + 35; 3 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as6.pdf" + ] + }, + { + "title": "Historical Prism Inscriptions of Ashurbanipal I: Editions E, B1-5, D, and K", + "authors": [ + "Arthur Carl Piepkorn." + ], + "series": "Assyriological Studies 5", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chricago Press" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "Pp. xiii +109", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as5.pdf" + ] + }, + { + "title": "Beitrage zum Assyrischen Wörterbuch II.", + "authors": [ + "Bruno Meissner." + ], + "series": "Assyriological Studies 4", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. vii + 112", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as4.pdf" + ] + }, + { + "title": "Das appositionell bestimmte Pronomen der 1. Pers. sing. in den westsemitischen Inschriften und im Alten Testament.", + "authors": [ + "Arnold Poebel." + ], + "series": "Assyriological Studies 3", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. viii + 86", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as3.pdf" + ] + }, + { + "title": "The Sumerian Prefix Forms E - and I - in the Time of the Earlier Princes of Lagaš.", + "authors": [ + "Arno Poebel." + ], + "series": "Assyriological Studies 2", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. xi + 47", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as2.pdf" + ] + }, + { + "title": "Beitrage zum Assyrischen Wörterbuch I.", + "authors": [ + "Bruno Meissner." + ], + "series": "Assyriological Studies 1", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. 92", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/as1.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 1, A, part 1", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1964", + "isbn": "9780918986061", + "extent": "xxxvi + 392", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_a1.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 1, A, part 2", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1968", + "isbn": "9780918986078", + "extent": "xx + 531", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_a2.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 2, B", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1965", + "isbn": "9780918986085", + "extent": "xviii + 366", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_b.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 3, D", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1959", + "isbn": "9780918986092", + "extent": "xiv + 203", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_d.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 4, E", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1958", + "isbn": "9780918986108", + "extent": "xiv + 435", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_e.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 5, G", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1956", + "isbn": "9780918986115", + "extent": "xii + 158", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_g.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 6, H [Het]", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1956", + "isbn": "9780918986122", + "extent": "xiii + 266", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_h.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 7, I/J", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1960", + "isbn": "9780918986139", + "extent": "xv + 331", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_i-j.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 8, K", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1971", + "isbn": "9780918986146", + "extent": "xix + 617", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_k.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 9, L", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1973", + "isbn": "9780918986153", + "extent": "xx + 259", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_l.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 10, M, part 1", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1977", + "isbn": "9780918986160", + "extent": "xxiv + 441", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_m1.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 10, M, part 2", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1977", + "isbn": "9780918986160", + "extent": "xx + 324", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_m2.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 11, N, part 1", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1980", + "isbn": "9780918986177", + "extent": "xxiii + 382", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_n1.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 11, N, part 2", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1980", + "isbn": "9780918986177", + "extent": "xxi + 357", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_n2.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 12, P", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2005", + "isbn": "9781885923356", + "extent": "xxx + 559", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_p.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 13, Q", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1982", + "isbn": "9780918986245", + "extent": "xxiv + 332", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_q.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 14, R", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1999", + "isbn": "9781885923141", + "extent": "xxx + 441", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_r.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 15, S", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1984", + "isbn": "9780918986320", + "extent": "xxiv + 428", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 16, S [Tsade]", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1962", + "isbn": "9780918986184", + "extent": "xv + 262", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_tsade.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 17, S [Shin], part 1", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1989", + "isbn": "9780918986559", + "extent": "xxviii + 492", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_shin_1.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 17, S [Shin], part 2", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1992", + "isbn": "9780918986788", + "extent": "xxviii + 453", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_shin_2.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 17, S [Shin], part 3", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1992", + "isbn": "9780918986795", + "extent": "xxxiv + 420", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_s_shin_3.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 18, T", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2006", + "isbn": "9781885923424", + "extent": "xxx + 500", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_t.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 19, T [Tet]", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2006", + "isbn": "9781885923431", + "extent": "xxxii + 167", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_tet.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 20, U/W", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2010", + "isbn": "9781885923783", + "extent": "xxxi + 411", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_u_w.pdf" + ] + }, + { + "title": "The Assyrian Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago (CAD)", + "authors": [ + "Robert D. Biggs, John A. Brinkman, Miguel Civil, Walter Farber, Erica Reiner, Martha T. Roth, Matthew W. Stolper" + ], + "series": "Volume 21, Z", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1961", + "isbn": "9780918986191", + "extent": "xv + 170", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_z.pdf" + ] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "A–K (nyp)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "", + "isbn": "", + "extent": "-", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "L–N, fascicle 1(la- to ma-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1980", + "isbn": "9780918986276", + "extent": "xxxii + 96 (1–96)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "L–N, fascicle 2(-ma to miyahuwant-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1983", + "isbn": "9780918986382", + "extent": "128 (97–224)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "L–N, fascicle 3(miyahuwant- to nai-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1986", + "isbn": "9780918986481", + "extent": "128 (225–352)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "L–N, fascicle 4(nai- to nutarnu-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1989", + "isbn": "9780918986580", + "extent": "xxx + 124 (353–477)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, Theo P. J. van den Hout" + ], + "series": "L–N, fascicles 1–4 (hb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1989", + "isbn": "0918986583", + "extent": "xxx + 477 (1–477)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chd_l-n.pdf" + ] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "P, fascicle 1(pa- to para) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1994", + "isbn": "9780918986955", + "extent": "xi + 112 (1–112)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "P, fascicle 2(para- to pattar) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1995", + "isbn": "9781885923004", + "extent": "128 (113–240)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "P, fascicle 3(pattar to putkiya-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1997", + "isbn": "9781885923066", + "extent": "xxxii + 163 (241–403)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, Theo P. J. van den Hout" + ], + "series": "P, fascicles 1–3 (hb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1997", + "isbn": "9781885923080", + "extent": "xxxii + 403 (1–403)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/CHDP.pdf" + ] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "S, fascicle 1(sa- to saptamenzu) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2002", + "isbn": "9781885923202", + "extent": "viii + 208 (1–208)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "S, fascicle 2(saptamenzu to si) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2005", + "isbn": "9781885923370", + "extent": "124 (209–332)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "S, fascicle 3(se- to sizisalla-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2013", + "isbn": "9781885923950", + "extent": "176 (333–508)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, and Theo P. J. van den Hout" + ], + "series": "S, fascicle 4 (-šma/i- A. to šūu-) (pb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2019", + "isbn": "9781614910473", + "extent": "xliii + 200 (509–661)", + "url": [] + }, + { + "title": "The Hittite Dictionary of the Institute for the Study of Ancient Cultures of the University of Chicago", + "authors": [ + "Petra M. Goedegebuure, Hans G. Güterbock, Harry A. Hoffner, Theo P. J. van den Hout" + ], + "series": "S, fascicles 1–4 (sa- to šūu-) (hb)", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "2019", + "isbn": "9781614910503", + "extent": "xliii + 661 (1–661)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chds.pdf" + ] + }, + { + "title": "Unpublished Bo-Fragments in Transliteration II (Bo 6151–Bo 9535)", + "authors": [ + ". Oğuz Soysal and Başak Yıldız Gülşen." + ], + "series": "Chicago Hittite Dictionary Supplements 3", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2019", + "isbn": "9781614910442", + "extent": "Pp. xvi + 306; 316 illustrations (most color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/CHDS/chds3.pdf" + ] + }, + { + "title": "Unpublished Bo-Fragments in Transliteration I (Bo 9536–Bo 9736)", + "authors": [ + ". Oğuz Soysal." + ], + "series": "Chicago Hittite Dictionary Supplements 2", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2015", + "isbn": "9781614910282", + "extent": "Pp. xvi + 224; 234 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chds2.pdf" + ] + }, + { + "title": "Ankara Arkeoloji Müzesinde bulanan Bogazköy Tabletleri II - Bogazköy Tablets in the Archaeological Museum of Ankara II.", + "authors": [ + "Rukiye AkdoganOğuz Soysal." + ], + "series": "Chicago Hittite Dictionary Supplements 1", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2011", + "isbn": "9781885923813", + "extent": "Pp. xii + 50; 64 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/chds1.pdf" + ] + }, + { + "title": "ISACS 14. Seen Not Heard: Composition, Iconicity, and the Classifier Systems of Logosyllabic Scripts", + "authors": [ + ". Ilona Zsolnay," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "Institute for the Study of Ancient Cultures" + ], + "publicationDate": "2023", + "isbn": "9781614910855", + "extent": "Pp. xxii+ 328; 99 figures, 11tables", + "url": [] + }, + { + "title": "Purchase", + "authors": [ + "" + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "Institute for the Study of Ancient Cultures" + ], + "publicationDate": "2023", + "isbn": "9781614910855", + "extent": "Pp. xxii+ 328; 99 figures, 11tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIS/isacs14.pdf" + ] + }, + { + "title": "Irrigation in Early States: New Directions", + "authors": [ + ". Stephanie Rost," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2022", + "isbn": "9781614910718", + "extent": "Pp. xxx+ 452; 99 figures, 45 tables, 4 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIS/ois13.pdf" + ] + }, + { + "title": "Structures of Power: Law and Gender Across the Ancient Near East and Beyond", + "authors": [ + ". Ilan Peled," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2018", + "isbn": "9781614910398", + "extent": "Pp. vii + 220; 15 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIS/ois12.pdf" + ] + }, + { + "title": "The Late Third Millennium in the Ancient Near East: Chronology, C14, and Climate Change", + "authors": [ + ". Felix Höflmayer," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2017", + "isbn": "9781614910367", + "extent": "Pp. xii + 516; 176 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois11.pdf" + ] + }, + { + "title": "Household Studies in Complex Societies: (Micro) Archaeological and Textual Approaches.", + "authors": [ + "Miriam Müller," + ], + "series": "Oriental Institute Seminars 10", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2015", + "isbn": "9781614910237", + "extent": "Pp. xlii + 470; 208 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois10.pdf" + ] + }, + { + "title": "Heaven on Earth: Temples, Ritual, and Cosmic Symbolism in the Ancient World.", + "authors": [ + "Deena Ragavan," + ], + "series": "Oriental Institute Seminars 9", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2013", + "isbn": "9781885923967", + "extent": "Pp. viii+463; 174 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois9.pdf" + ] + }, + { + "title": "Iconoclasm and Text Destruction in the Ancient Near East and Beyond.", + "authors": [ + "Natalie Naomi May," + ], + "series": "Oriental Institute Seminars 8", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2012", + "isbn": "9781885923905", + "extent": "Pp. xvi + 528; 152 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois8.pdf" + ] + }, + { + "title": "Slaves and Households in the Near East.", + "authors": [ + "Laura Culbertson," + ], + "series": "Oriental Institute Seminars 7", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2011", + "isbn": "9781885923837", + "extent": "Pp. viii + 152; 1 figure, 3 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois7.pdf" + ] + }, + { + "title": "Divination and Interpretation of Signs in the Ancient World.", + "authors": [ + "Amar Annus," + ], + "series": "Oriental Institute Seminars 6", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2010", + "isbn": "9781885923684", + "extent": "Pp. viii + 352; 10 figures, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois6.pdf" + ] + }, + { + "title": "Nomads, Tribes, and the State in the Ancient Near East: Cross-disciplinary Perspective.", + "authors": [ + "Jeffrey Szuchman," + ], + "series": "Oriental Institute Seminars 5", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2009", + "isbn": "9781885923615", + "extent": "Pp. xvi + 288; 70 figures, 7 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois5.pdf" + ] + }, + { + "title": "Religion and Power: Divine Kingship in the Ancient World and Beyond", + "authors": [ + "Nicole Brisch", + " Second printing with minor corrections," + ], + "series": "Oriental Institute Seminars 4", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2008", + "isbn": "9781885923554, 1885923554", + "extent": "Pp. xiii + 271; 50 figures, 7 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois4.pdf" + ] + }, + { + "title": "Performing Death: Social Analyses of Funerary Traditions in the Ancient Near East and Mediterranean", + "authors": [ + "Nicola Laneri," + ], + "series": "Oriental Institute Seminars 3", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2007", + "isbn": "1885923503", + "extent": "Pp. xviii + 318; 86 figures; 5 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois3.pdf" + ] + }, + { + "title": "Margins of Writing, Origins of Cultures. (second printing)", + "authors": [ + "Seth L. Sanders," + ], + "series": "Oriental Institute Seminars 2", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "1885923392", + "extent": "Pp. x + 306; 9 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIS2.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ois2_2007.pdf" + ] + }, + { + "title": "Changing Social Identity with the Spread of Islam: Archaeological Perspectives.", + "authors": [ + "Donald Whitcomb," + ], + "series": "Oriental Institute Seminars 1", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2004", + "isbn": "1885923341", + "extent": "Pp, x + 102 + 46 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIS1.pdf" + ] + }, + { + "title": "Scripts and Scripture: Writing and Religion in Arabia circa 500–700 CE.", + "authors": [ + "Fred M. DonnerRebecca Hasselbach-Andee", + "", + "with contributions by Ahmad Al-Jallad", + "François Déroche", + "Fred M. Donner", + "Suleyman Dost", + "Adam Flowers", + "Sidney Griffith", + "Robert G. Hoyland", + "Ilkka Lindstedt", + "Kyle Longworth", + "Michael C. A. Macdonald", + "Laïla Nehmé", + "Gordon Newby,Hamza M. Zafer." + ], + "series": "Late Antique and Medieval Islamic Near East 3", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2022", + "isbn": "9781614910732", + "extent": "Pp. xxii + 287; 55 figures, 10 tables, 2 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/LAMINE/lamine3.pdf" + ] + }, + { + "title": "The Damascus Psalm Fragment: Middle Arabicand the Legacy of Old Higāzī.", + "authors": [ + "Ahmad Al-Jallad", + "with a contribution by Ronny Vollandt." + ], + "series": "Late Antique and Medieval Islamic Near East 2", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2020", + "isbn": "9781614910527", + "extent": "160 pages (xxiv + 136); 31figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/LAMINE/Lamine2.pdf" + ] + }, + { + "title": "Christians and Others in the Umayyad State.", + "authors": [ + "Antoine BorrutFred M. Donner", + "", + "with contributions by Touraj Daryaee", + "Muriel Debié", + "Sidney H. Griffith", + "Wadad al-Qadi", + "Milka Levy-Rubin", + "Suzanne Pinckney Stetkevych", + "Donald Whitcomb,Luke Yarbrough." + ], + "series": "Late Antique and Medieval Islamic Near East 1", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2016", + "isbn": "9781614910312", + "extent": "Pp. x + 214; 18 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lamine1.pdf" + ] + }, + { + "title": "Sargonic Texts in the Ashmolean Museum, Oxford.", + "authors": [ + "I. J. Gelb." + ], + "series": "Materials for the Assyrian Dictionary 5", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1970", + "isbn": "9780226623092", + "extent": "Pp. xxx + 150; 46 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad5.pdf" + ] + }, + { + "title": "Sargonic Texts in the Louvre Museum.", + "authors": [ + "I. J. Gelb." + ], + "series": "Materials for the Assyrian Dictionary 4", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1970", + "isbn": "9780226623085", + "extent": "Pp. xxiv + 143; 25 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad4.pdf" + ] + }, + { + "title": "Glossary of Old Akkadian.", + "authors": [ + "I. J. Gelb." + ], + "series": "Materials for the Assyrian Dictionary 3", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "", + "extent": "Pp. xxiv + 318", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad3.pdf" + ] + }, + { + "title": "Old Akkadian Writing and Grammar", + "authors": [ + "I. J. Gelb." + ], + "series": "Materials for the Assyrian Dictionary 2", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1952", + "isbn": "", + "extent": "Pp. x + 235", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad2.pdf" + ] + }, + { + "title": "Sargonic Texts from the Diyala Region", + "authors": [ + "I. J. Gelb." + ], + "series": "Materials for the Assyrian Dictionary 1", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1952", + "isbn": "", + "extent": "Pp. xviii + 251", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mad1.pdf" + ] + }, + { + "title": "MSKH 1. A Catalogue of Cuneiform Sources Pertaining to Specific Monarchs of the Kassite Dynasty.", + "authors": [ + "J. A. Brinkman." + ], + "series": "Materials and Studies for Kassite History 1", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1977", + "isbn": "9780918986009", + "extent": "Pp. xxiv + 469; 11 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/mskh1.pdf" + ] + }, + { + "title": "The Second Cataract Fortress of Dorginarti.", + "authors": [ + "Lisa A. Heidorn." + ], + "series": "Nubian Expedition 12", + "publisherLocation": "Chicago", + "publisher": [ + "Chicago: Institute for the Study of Ancient Cultures" + ], + "publicationDate": "2023", + "isbn": "9781614910831", + "extent": "Pp. lii + 496;184 figures, 7 tables, 3 maps, 10 plans, 107 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ne12.pdf" + ] + }, + { + "title": "Beads from Excavations at Qustul, Adindan, Serra East, Dorginarti, Ballana, and Kalabsha, Part 1: A-Group, Post-A-Group, C-Group, N-Type, P-Type, Pan Grave, Kerma, Middle Kingdom, and New Kingdom.", + "authors": [ + "Joanna Then-Obłuska." + ], + "series": "Oriental Institute Nubian Expedition 11", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2022", + "isbn": "9781614910770", + "extent": "Pp. xxvii + 361 (manyin color); 20 figures, 14 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine11.pdf" + ] + }, + { + "title": "Excavations at Serra East, Parts 1-5: A-Group, C-Group, Pan Grave, New Kingdom, and X-Group Remains from Cemeteries A-G and Rock Shelters.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 10", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1993", + "isbn": "9780918986924", + "extent": "Pp. xxxii + 281; 148 figures, 43 plates, 55 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine10.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 9: Noubadian X-Group Remains from Royal Complexes in Cemeteries Q and 219 and Private Cemeteries Q, R, V, W, B, J, and M at Qustul and Ballana.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 9", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "9780918986740", + "extent": "Pp. xxxix + 501; 195 figures, 83 plates, 54 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine9.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 8: Meroitic Remains from Qustul Cemetery Q, Ballana Cemetery B, and a Ballana Settlement. Two volumes (Text, Plates).", + "authors": [ + "B. B. Williams", + "et. al." + ], + "series": "Nubian Expedition 8", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "9780918986719", + "extent": "Text vol.: Pp. xlvii + 458", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine8pt1.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine8pt2.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 7: Twenty-Fifth Dynasty and Napatan Remains at Qustul Cemeteries W and V.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 7", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "9780918986603", + "extent": "Pp. xxvii + 83;33 figures, 15 plates, 16 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine7.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 6: New Kingdom Remains from Cemeteries R, V, S, and W at Qustul and Cemetery K at Adindan.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 6", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1992", + "isbn": "9780918986863", + "extent": "Pp. xxxv + 479; 206 figures, 53 plates, 24 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine6.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 5: C-Group, Pan Grave, and Kerma Remains at Adindan Cemeteries T, K, U, and J.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 5", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute:" + ], + "publicationDate": "1983", + "isbn": "9780918986337", + "extent": "Pp. xxvi + 235; 48 figures, 131 plates, 50 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine5.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Parts 2, 3, and 4: Neolithic, A-Group, and Post A-Group Remains from Cemeteries W, V, S, Q, T, and a Cave East of Cemetery K.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 4", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1989", + "isbn": "9780918986542", + "extent": "Pp. xxvii + 388; 72 figures, 55 plates, 26 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine4.pdf" + ] + }, + { + "title": "Excavations Between Abu Simbel and the Sudan Frontier, Part 1: The A-Group Royal Cemetery at Qustul, Cemetery L.", + "authors": [ + "B. B. Williams." + ], + "series": "Nubian Expedition 3", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1986", + "isbn": "9780918986467", + "extent": "Pp. xxxviii + 388, 190 figures, 100 plates, 43 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine3.pdf" + ] + }, + { + "title": "Ausgrabungen von Khor-Dehmit bis Bet El-Wali.", + "authors": [ + "H. Ricke." + ], + "series": "Nubian Expedition 2", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1967", + "isbn": "9780226623665", + "extent": "Pp. xvii + 70; 81 figures, 3 plans, 30 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine2.pdf" + ] + }, + { + "title": "The Beit el-Wali Temple of Ramesses II.", + "authors": [ + "Herbert Ricke", + "George R. Hughes,Edward F. Wente." + ], + "series": "Nubian Expedition 1", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1967", + "isbn": "", + "extent": "Pp. xvii + 39; 6 figures, 49 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oine1.pdf" + ] + }, + { + "title": "Barda Balka.", + "authors": [ + "Bruce Howe", + "with foreword by Yorke M. Rowan." + ], + "series": "Oriental Institute Communications 31", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2014", + "isbn": "9781614910008", + "extent": "Pp. xvi + 32; 3 figures, 22 plates, 3 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic31.pdf" + ] + }, + { + "title": "Bir Umm Fawakhir, Volume 2: Report on the 1996–1997 Survey Seasons.", + "authors": [ + "Carol Meyer", + "with contributions by Lisa Heidorn", + "Alexandra A. O'Brien,Clemens Reichel." + ], + "series": "Oriental Institute Communications 30", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2011", + "isbn": "9781885923714", + "extent": "Pp. xxviii + 220; 53 figures, 108 plates, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic30.pdf" + ] + }, + { + "title": "Catalog of Demotic Texts in the Brooklyn Museum.", + "authors": [ + "George R. Hughes." + ], + "series": "Oriental Institute Communications 29", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2005", + "isbn": "9781885923271", + "extent": "Pp. xix + 115; 48 plates (8 color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic29.pdf" + ] + }, + { + "title": "Bir Umm Fawakhir Survey Project 1993: A Byzantine Gold-Mining Town in Egypt.", + "authors": [ + "C. Meyer", + "L. A. Heidorn", + "W. E. Kaegi,T. Wilfong." + ], + "series": "Oriental Institute Communications 28", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2000", + "isbn": "9781885923165", + "extent": "Pp. xviii + 92; 59 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic28.pdf" + ] + }, + { + "title": "The Registry of the Photographic Archives of the Epigraphic Survey, with Plates from Key Plans Showing Locations of Theban Temple Decorations.", + "authors": [ + "The Epigraphic Survey (H. H. Nelson)." + ], + "series": "Oriental Institute Communications 27", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1995", + "isbn": "9780918986986", + "extent": "Pp. xviii + 270; 38 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic27.pdf" + ] + }, + { + "title": "Publications of the Oriental Institute, 1906–2014: Exploring the History and Civilizations of the Near East.", + "authors": [ + "Thomas G. UrbanLeslie Schramer," + ], + "series": "Oriental Institute Communications 26", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2014", + "isbn": "9781614910077", + "extent": "28 pages", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic26.pdf" + ] + }, + { + "title": "Figurines and Other Clay Objects from Sarab and Cayönü.", + "authors": [ + "V. B. Morales." + ], + "series": "Oriental Institute Communications 25", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "9780918986597", + "extent": "Pp. xvi + 92; 2 catalogs, 30 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic25.pdf" + ] + }, + { + "title": "The American Expedition to Idalion, Cyprus 1973–1980.", + "authors": [ + "L. E. StagerA. M. Walker," + ], + "series": "Oriental Institute Communications 24", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1989", + "isbn": "9780918986528", + "extent": "Pp. xxiv + 516; 93 figures, 82 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic24.pdf" + ] + }, + { + "title": "Excavations at Nippur: Twelfth Season.", + "authors": [ + "McGuire Gibson", + "Judith A. Franke", + "Miguel Civil", + "Michael L. Bates", + "Joachim Boessneck", + "Karl W. ButzerTed A. Rathbun,Elizabeth Frick Mallin." + ], + "series": "Oriental Institute Communications 23", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1978", + "isbn": "9780918986221", + "extent": "Pp. xiv + 190; 92 figures, 16 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic23.pdf" + ] + }, + { + "title": "Excavations at Nippur: Eleventh Season.", + "authors": [ + "McG. Gibson", + "with appendices by M. Civil", + "J. H. Johnson,S. A. Kaufman." + ], + "series": "Oriental Institute Communications 22", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1976", + "isbn": "9780226623399", + "extent": "Pp. ix + 152; 18 figures, 3 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic22.pdf" + ] + }, + { + "title": "The Treasury of Persepolis and Other Discoveries in the Homeland of the Achaemenians", + "authors": [ + "Erich F. Schmidt." + ], + "series": "Oriental Institute Communications 21", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xxi + 139; frontispiece; 97 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic21.pdf" + ] + }, + { + "title": "Progress of the Work of the Oriental Institute in Iraq, 1934/35: Fifth Preliminary Report of the Iraq Expedition.", + "authors": [ + "Henri Frankfort." + ], + "series": "Oriental Institute Communications 20", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xi + 108; frontispiece; 85 figures; 8 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic20.pdf" + ] + }, + { + "title": "Oriental Institute Discoveries in Iraq, 1933/34: Fourth Preliminary Report of the Iraq Expedition.", + "authors": [ + "Henri Frankfort", + "with a chapter by Thorkild Jacobsen." + ], + "series": "Oriental Institute Communications 19", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xi + 103; frontispiece; 107 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic19.pdf" + ] + }, + { + "title": "Work in Western Thebes, 1931–33.", + "authors": [ + "Harold H. NelsonUvo Hölscher", + "with a chapter by Siegfried Schott." + ], + "series": "Oriental Institute Communications 18", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic18.pdf" + ] + }, + { + "title": "Iraq Excavations of the Oriental Institute 1932/33: Third Preliminary Report of the Iraq Expedition.", + "authors": [ + "Henri Frankfort." + ], + "series": "Oriental Institute Communications 17", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. ix +92; frontispiece, 83 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic17.pdf" + ] + }, + { + "title": "Tell Asmar, Khafaje and Khorsabad: Second Preliminary Report of the Iraq Expedition.", + "authors": [ + "Henri Frankfort." + ], + "series": "Oriental Institute Communications 16", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "Pp. ix + 102; 66 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic16.pdf" + ] + }, + { + "title": "Excavations at Ancient Thebes, 1930/31", + "authors": [ + ". Uvo Hölscher." + ], + "series": "Oriental Institute Communications 15", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. vii + 65; 41 figures, 4 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic15.pdf" + ] + }, + { + "title": "Discoveries in Anatolia, 1930–31.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Communications 14", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "Pp. xi + 149; 134 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic14.pdf" + ] + }, + { + "title": "Tell Asmar and Khafaje: The First Season’s Work in Eshnunna 1930/31.", + "authors": [ + "Henri Frankfort", + "Thorkild Jacobsen,Conrad Preusser." + ], + "series": "Oriental Institute Communications 13", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. ix + 112; 54 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic13.pdf" + ] + }, + { + "title": "The Alphabet: Its Rise and Development from the Sinai Inscriptions.", + "authors": [ + "Martin Sprengling." + ], + "series": "Oriental Institute Communications 12", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. xi +71; 5 figures, 3 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic12.pdf" + ] + }, + { + "title": "Anatolia Through the Ages: Discoveries at the Alishar Mound 1927–29.", + "authors": [ + "Erich F. Schmidt." + ], + "series": "Oriental Institute Communications 11", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. x + 165; 213 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic11.pdf" + ] + }, + { + "title": "Medinet Habu Reports – Third Preliminary Report.", + "authors": [ + "Part The Epigraphic Survey", + "– By Harold H. Nelson Part The Architectural Survey", + "/ Uvo Hölscher" + ], + "series": "Oriental Institute Communications 10", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. vii + 69; 42 figures, 4 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic10.pdf" + ] + }, + { + "title": "New Light from Armageddon: Second Provisional Report (1927–29) on the Excavations at Megiddo in Palestine.", + "authors": [ + "P. L. O. Guy." + ], + "series": "Oriental Institute Communications 9", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. x + 68; 61 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic9.pdf" + ] + }, + { + "title": "Explorations in Hittite Asia Minor, 1929.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Communications 8", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "", + "extent": "Pp. vii + 196; 163 figures, 9 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic8.pdf" + ] + }, + { + "title": "Medinet Habu 1928–29.", + "authors": [ + "Part : The Architectural Survey. Uvo Hölscher. Part : The Language of the Historical Texts Commemorating Ramses III. John A. Wilson" + ], + "series": "Oriental Institute Communications 7", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "", + "extent": "Pp. ix + 33; 18 figures, 3 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic7.pdf" + ] + }, + { + "title": "Explorations in Hittite Asia Minor 1927–28.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Communications 6", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "", + "extent": "Pp. vii + 153; 160 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic6.pdf" + ] + }, + { + "title": "Medinet Habu 1924–28.", + "authors": [ + "Part : The Epigraphic Survey of the Great Temple of Medinet Habu (Seasons – to –). Harold H. Nelson. Part : The Architectural Survey of the Great TemplePalace of Medinet Habu (Season –). By Uvo Hölscher." + ], + "series": "Oriental Institute Communications 5", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "", + "extent": "Pp. vi + 50; 35 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic5.pdf" + ] + }, + { + "title": "The Excavation of Armageddon.", + "authors": [ + "Clarence S. Fisher." + ], + "series": "Oriental Institute Communications 4", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "", + "extent": "Pp. xv + 78; 53 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic4.pdf" + ] + }, + { + "title": "First Report of the Prehistoric Survey Expedition.", + "authors": [ + "K. S. SandfordW. J. Arkell." + ], + "series": "Oriental Institute Communications 3", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1928", + "isbn": "", + "extent": "Pp. xi + 52; 29 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic3.pdf" + ] + }, + { + "title": "Explorations in Hittite Asia Minor: A Preliminary Report.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Communications 2", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1927", + "isbn": "", + "extent": "Pp. viii +104; 101 figures, 2 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic2.pdf" + ] + }, + { + "title": "The Oriental Institute of the University of Chicago: A Beginning and a Program.", + "authors": [ + "James Henry Breast" + ], + "series": "Oriental Institute Communications 1", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1922", + "isbn": "", + "extent": "Pp. 96; 74 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oic1.pdf" + ] + }, + { + "title": "Letters from James Henry Breasted to His Family, August 1919–July 1920.", + "authors": [ + "John A. Larson," + ], + "series": "Oriental Institute Digital Archives 1", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2010", + "isbn": "", + "extent": "Pp. 281; 7 figures, 9 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oida1.pdf" + ] + }, + { + "title": "Antoin Sevruguin: Past and Present.", + "authors": [ + "Tasha Vorderstrasse," + ], + "series": "Oriental Institute Museum Publications 40", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2020", + "isbn": "9781614910541, 9781614910572", + "extent": "Pp. 412 (xliv + 368); 259 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIMP/oimp40.pdf" + ] + }, + { + "title": "Book of the Dead: Becoming God in Ancient Egypt.", + "authors": [ + "Foy Scalf," + ], + "series": "Oriental Institute Museum Publications 39", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2017", + "isbn": "9781614910381", + "extent": "Pp. 376; 373illustrations (most color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp39.pdf" + ] + }, + { + "title": "A Cosmopolitan City: Muslims, Christians, and Jews in Old Cairo.", + "authors": [ + "Tasha VorderstrasseTanya Treptow," + ], + "series": "Oriental Institute Museum Publications 38", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2015", + "isbn": "9781614910268", + "extent": "Pp. 232; 185 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp38.pdf" + ] + }, + { + "title": "In Remembrance of Me: Feasting with the Dead in the Ancient Middle East.", + "authors": [ + "Virginia Rimmer HerrmannJ. David Schloen," + ], + "series": "Oriental Institute Museum Publications 37", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2014", + "isbn": "9781614910176", + "extent": "Pp. 176; 140 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp37.pdf" + ] + }, + { + "title": "Our Work: Modern Jobs – Ancient Origins.", + "authors": [ + "Photographs by Jason Reblando", + "interviews by Matthew Cunningham,Jack GreenEmily Teeter," + ], + "series": "Oriental Institute Museum Publications 36", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2013", + "isbn": "9781885923998", + "extent": "Pp. 128; 24 tintype portraits, 46 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp36.pdf" + ] + }, + { + "title": "Between Heaven and Earth: Birds in Ancient Egypt.", + "authors": [ + "Rozenn Bailleul-LeSuer," + ], + "series": "Oriental Institute Museum Publications 35", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2012", + "isbn": "9781885923929", + "extent": "Pp. 232; 210 illustrations (most in color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp35.pdf" + ] + }, + { + "title": "Picturing the Past: Imaging and Imagining the Ancient Middle East.", + "authors": [ + "Jack Green", + "Emily Teeter,John A. Larson," + ], + "series": "Oriental Institute Museum Publications 34", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2012", + "isbn": "9781885923899", + "extent": "Pp. 184; 168 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp34.pdf" + ] + }, + { + "title": "Before the Pyramids: The Origins of Egyptian Civilization.", + "authors": [ + "Emily Teeter," + ], + "series": "Oriental Institute Museum Publications 33", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2011", + "isbn": "9781885923820", + "extent": "Pp. 288; 196 figures (most in color), 129 objects (all in color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIMP/oimp33.pdf" + ] + }, + { + "title": "Visible Language: Inventions of Writing in the Ancient Middle East and Beyond.", + "authors": [ + "Christopher Woods", + ", with Emily TeeterGeoff Emberling. Reprint with minor corrections" + ], + "series": "Oriental Institute Museum Publications 32", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2015", + "isbn": "9781885923769", + "extent": "Pp. 240; 104 pages color", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp32.pdf" + ] + }, + { + "title": "Purchase", + "authors": [ + "" + ], + "series": "Oriental Institute Museum Publications 31", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute" + ], + "publicationDate": "2011", + "isbn": "9781885923653", + "extent": "Pp. xii + 130; 4 B&W and68 color images", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp31.pdf" + ] + }, + { + "title": "Pioneers to the Past: American Archaeologists in the Middle East, 1919–1920.", + "authors": [ + "Geoff Emberling," + ], + "series": "Oriental Institute Museum Publications 30", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute" + ], + "publicationDate": "2010", + "isbn": "9781885923707", + "extent": "Pp. 160 + 119 full color and archival photographs", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp30.pdf" + ] + }, + { + "title": "The Life of Meresamun: A Temple Singer in Ancient Egypt.", + "authors": [ + "Emily TeeterJanet H. Johnson," + ], + "series": "Oriental Institute Museum Publications 29", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2009", + "isbn": "9781885923608", + "extent": "Pp. 135; 120 color and 20 B&W illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp29.pdf" + ] + }, + { + "title": "Catastrophe! The Looting and Destruction of Iraq’s Past", + "authors": [ + ". Geoff EmberlingKatharyn Hanson," + ], + "series": "Oriental Institute Museum Publications 28", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2008", + "isbn": "9781885923561", + "extent": "Pp. 88; 48 illustrations, most in color", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp28.pdf" + ] + }, + { + "title": "European Cartographers and the Ottoman World, 1500–1750: Maps from the Collection of O. J. Sopranos", + "authors": [ + ". Ian Manners." + ], + "series": "Oriental Institute Museum Publications 27", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2007", + "isbn": "9781885923530", + "extent": "Pp. 144; 53 color and 5 B&W illusustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp27.pdf" + ] + }, + { + "title": "Daily Life Ornamented: The Medieval Persian City of Rayy", + "authors": [ + ". Tanya Treptow", + "with the collaboration of Donald Whitcomb." + ], + "series": "Oriental Institute Museum Publications 26", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2007", + "isbn": "9781885923516", + "extent": "Pp. 64;8 B&W and54 color illustrations, 3 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp26.pdf" + ] + }, + { + "title": "The Ancient Near East in the Time of Tutankhamun: A Self-guided Tour.", + "authors": [ + "Geoff EmberlingEmily Teeter." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute Museum" + ], + "publicationDate": "2006", + "isbn": "", + "extent": "Pp. 11; 9 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/time_of_tutankhamun_tour.pdf" + ] + }, + { + "title": "Ancient Nubia.", + "authors": [ + "Oriental Institute Museum." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute Museum" + ], + "publicationDate": "2006", + "isbn": "", + "extent": "Pp. 4; 13 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_nubia_gallery.pdf" + ] + }, + { + "title": "Embroidering Identities: A Century of Palestinian Clothing.", + "authors": [ + "Iman Saca", + "in collaboration with Maha Saca." + ], + "series": "Oriental Institute Museum Publications 25", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "", + "extent": "Pp. 48; 5 B&W and 30 color illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp25.pdf" + ] + }, + { + "title": "Lost Nubia: A Centennial Exhibit of Photographs from the 1905–1907 Egyptian Expedition of the University of Chicago.", + "authors": [ + "John A. Larson." + ], + "series": "Oriental Institute Museum Publications 24", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "9781885923745", + "extent": "Pp. xiii + 109; 58 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp24.pdf" + ] + }, + { + "title": "Ancient Egypt: Treasures from the Collection of the Oriental Institute.", + "authors": [ + "Emily Teeter." + ], + "series": "Oriental Institute Museum Publications 23", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2003", + "isbn": "9781885923257", + "extent": "Pp. 160;82 color and 26 B&W illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oimp23.pdf" + ] + }, + { + "title": "Artists in Egypt (1920–1935).", + "authors": [ + "John Carswell." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute Museum" + ], + "publicationDate": "1991", + "isbn": "", + "extent": "Pp. 45; 20 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/egyptian_art.pdf" + ] + }, + { + "title": "The Oriental Institute Museum: Highlights from the Collection.", + "authors": [ + "Oriental Institute Museum." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute Museum" + ], + "publicationDate": "1989", + "isbn": "", + "extent": "Pp. 28; 54 B&W and 10 color illustrations, 2 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/museum_highlights_1989.pdf" + ] + }, + { + "title": "A Guide to the Oriental Institute Museum.", + "authors": [ + "Leon Marfoe,Peter T. DanielsValerie M. Fargo," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1982", + "isbn": "", + "extent": "Pp. xiv + 139; 68 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Guide_to_OI_Museum_1982.pdf" + ] + }, + { + "title": "Islamic Bindings & Bookmaking: A Catalogue of an Exhibition in the Oriental Institute Museum, University of Chicago, May 18–August 18, 1981.", + "authors": [ + "Gulnar Bosch", + "John Carswell,Guy Petherbridge." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1981", + "isbn": "", + "extent": "Pp. xii + 235; 91 B&W and 14 color illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/IslamicBindings.pdf" + ] + }, + { + "title": "John D. Rockefeller, Jr. Centenary Exhibition: A Productive Collaboration 1919–1935", + "authors": [ + "." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1974", + "isbn": "", + "extent": "Pp. 24; frontispiece, 3 figures, 1 table, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/rockefeller_centenary.pdf" + ] + }, + { + "title": "A Catalogue of Arabic Manuscripts in the Oriental Institute of Chicago.", + "authors": [ + "Miroslav Krek." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "New Haven: American Oriental Society" + ], + "publicationDate": "1961", + "isbn": "", + "extent": "Pp. ix + 46", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/arabic_mss.pdf" + ] + }, + { + "title": "Iranian Art at the Oriental Institute Museum of the University of Chicago.", + "authors": [ + "Designs by Sue Richert", + "text by Carl H. Kraeling." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute Museum" + ], + "publicationDate": "1951", + "isbn": "", + "extent": "Pp. 24; 20 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/iranian_art.pdf" + ] + }, + { + "title": "The Oriental Institute Handbook and Museum Guide.", + "authors": [ + "Oriental Institute Museum." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute Museum" + ], + "publicationDate": "1941", + "isbn": "", + "extent": "Pp. 35; 23 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/museum_guide_1941.pdf" + ] + }, + { + "title": "Excavations at the Palatial Complex: Kerkenes Final Reports 2", + "authors": [ + ". Geoffrey Summers", + "with contributions by Susanne Berndt", + "Ahmet Çinici", + "Yilmaz Selim Erdal", + "Evangelia Pişkin", + "Noël Siver,Françoise Summers; introduction by Nicholas D. Cahill;Turkish summary by Güzin Eren." + ], + "series": "Oriental Institute Publications 148", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2022", + "isbn": "9781614910794, 9781614910800", + "extent": "Pp. 532 (xlvii + 485)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip148.pdf" + ] + }, + { + "title": "Tell Abada:An Ubaid Village in Central Mesopotamia", + "authors": [ + ". Sabah Abboud Jasim." + ], + "series": "Oriental Institute Publications 147", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2021", + "isbn": "9781614910688, 9781614910695", + "extent": "Pp. 588(xlii+ 546)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip147.pdf" + ] + }, + { + "title": "The Archive of Thotsutmis, Son of Panouphis:Early Ptolemaic Ostraca from Deir El Bahari (O. Edgerton)", + "authors": [ + ". Brian P. Muhs", + "Foy D. Scalf", + "Jacqueline E. Jay." + ], + "series": "Oriental Institute Publications 146", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2021", + "isbn": "9781614910671, 9781614910664", + "extent": "Pp. 228 (xxxii + 196)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip146.pdf" + ] + }, + { + "title": "Excavations at the Cappadocia Gate: Kerkenes Final Reports 1", + "authors": [ + ". Geoffrey D. Summers", + "with contributions by Susanne Berndt", + "Yilmaz Selim Erdal", + "Evangelia Piskin", + "Yasemin Özarslan", + "Noël Siver", + "Francoise Summers", + "Robert Tate,Nilüfer Baturayoğlu Yöney", + "introduction by David Stronach,Turkish summary by Güzin Eren." + ], + "series": "Oriental Institute Publications 145", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2021", + "isbn": "9781614910596, 9781614910602", + "extent": "Pp. 408 (L + 358)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip145.pdf" + ] + }, + { + "title": "The Sheikh's House at Quseir al-Qadim: Documenting a Thirteenth-Century Red Sea Port", + "authors": [ + ". Katherine Strange Burke", + "with contributions by Steven M. GoodmanWilma Wetterstrom." + ], + "series": "Oriental Institute Publications 144", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2021", + "isbn": "9781614910565, 9781614910589", + "extent": "Pp. 424 (lxiv + 360)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip144.pdf" + ] + }, + { + "title": "Excavations in the Plain of Antioch III: Stratigraphy, Pottery, and Small Finds from Chatal Höyük in the Amuq Plain", + "authors": [ + ". Marina Pucci." + ], + "series": "Oriental Institute Publications 143", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2019", + "isbn": "9781614910466", + "extent": "Part 1: pp. lxiv + 336; Part 2: pp. xiv + 570", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/OIP143-1.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/OIP143-2.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/CAT_CH_11_online.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/CAT_CH_14_online.pdf" + ] + }, + { + "title": "The Great Hypostyle Hall in the Temple of Amun at Karnak", + "authors": [ + ". Peter J. Brand", + "Rosa Erika Feleg,William J. Murnane." + ], + "series": "Oriental Institute Publications 142", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2019", + "isbn": "9781614910275", + "extent": "Part 2: pp. xvi + 432; Part 3: pp. xxiv + 328", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip142-2.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/OIP/oip142-3.pdf" + ] + }, + { + "title": "Bir Umm Fawakhir 3: Excavations 1999–2001", + "authors": [ + ". Carol Meyer", + "with contributions by Lisa A. Heidorn", + "Salima Ikram", + "Richard L. Jaeschke", + "Thomas Roby,Wendy Smith." + ], + "series": "Oriental Institute Publications 141", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2014", + "isbn": "9781614910206", + "extent": "Pp. xxviii + 172; 48 figures, 132 plates, 9 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip141.pdf" + ] + }, + { + "title": "Ancient Settlement Systems and Cultures in the Ram Hormuz Plain, Southwestern Iran: Excavations at Tell-e Geser and Regional Survey of the Ram Hormuz Area", + "authors": [ + ". Abbas Alizadeh", + "with contributions by Loghman AhmadzadehMehdi Omidfar,appendices by John R. Alden", + "Leah Minc", + "Jacques Connan", + "John Zumberge,Kendra Imbus." + ], + "series": "Oriental Institute Publications 140", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2014", + "isbn": "9781885923974", + "extent": "Pp. xl + 324; 117 figures, 199 plates (most in color), 28 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip140.pdf" + ] + }, + { + "title": "Early Megiddo on the East Slope (the “Megiddo Stages”): A Report on the Early Occupation of the East Slope of Megiddo (Results of the Oriental Institute’s Excavations, 1925-1933)", + "authors": [ + ". Eliot Braun", + "with David Ilan", + "Ofer Marder", + "Yael Braun,Sariel Shalev." + ], + "series": "Oriental Institute Publications 139", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2013", + "isbn": "9781885923981", + "extent": "Pp. xxxii + 174; 34 figures, 98 plates, 22 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip139.pdf" + ] + }, + { + "title": "Bismaya: Recovering the Lost City of Adab.", + "authors": [ + "Karen Wilson", + "with Jacob Lauinger", + "Monica Louise Phillips", + "Benjamin Studevent-Hickman,Aage Westenholz." + ], + "series": "Oriental Institute Publications 138", + "publisherLocation": "Chicago", + "publisher": [ + "ISBN:" + ], + "publicationDate": "9781885923639", + "isbn": "", + "extent": "Chicago: The Oriental Institute of the University of Chicago, 2012", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip138.pdf" + ] + }, + { + "title": "Tell Hamoukar, Volume 1. Urbanism and Cultural Landscapes in Northeastern Syria: The Tell Hamoukar Survey, 1999-2001.", + "authors": [ + "Jason A. Ur." + ], + "series": "Oriental Institute Publications 137", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2010", + "isbn": "9781885923738", + "extent": "Pp. lxi + 384, includes Preface by McGuire Gibson and Arabic summary; 210 figures, 3 pocket maps, 74 tables.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137_map1.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137_map2.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip137_map3.pdf" + ] + }, + { + "title": "Medinet Habu IX. The Eighteenth Dynasty Temple, Part I: The Inner Sanctuaries. With Translations of Texts, Commentary, and Glossary.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 136", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2009", + "isbn": "1885923643, 9781885923646", + "extent": "Pp. xl + 92; 4 figures, 2 ground plans, 142 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip136.pdf" + ] + }, + { + "title": "Kerkenes Special Studies 1: Sculpture and Inscriptions from the Monumental Entrance to the Palatial Complex at Kerkenes Dag, Turkey.", + "authors": [ + "Catherine M. DraycottGeoffrey D. Summers", + "with contribution by Claude BrixheTurkish summary translated by G. Bike Yazıcıoglu." + ], + "series": "Oriental Institute Publications, Volume 135", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2008", + "isbn": "9781885923578", + "extent": "Pp. xxiv + 89; 98 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip135.pdf" + ] + }, + { + "title": "The Archaeology and Geography of Ancient Transcaucasian Societies, Volume 1: The Foundations of Research and Regional Survey in the Tsaghkahovit Plain, Armenia.", + "authors": [ + "Adam T. Smith", + "Ruben S. Badalyan,Pavel Avetisyan", + "with contributions by Alan GreeneLeah Minc." + ], + "series": "Oriental Institute Publications, Volume 134", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2009", + "isbn": "9781885923622", + "extent": "Pp. xlvi + 410; 72 figures, 82 plates, 7 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip134.pdf" + ] + }, + { + "title": "Baked Clay Figurines and Votive Beds from Medinet Habu.", + "authors": [ + "Emily Teeter." + ], + "series": "Oriental Institute Publications 133", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2010", + "isbn": "9781885923585", + "extent": "Pp. xxxiv + 216; 21 figures, 2 plans, 132 plates, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip133.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts, Volume 8. Middle Kingdom Copies of Pyramid Texts.", + "authors": [ + "James P. Allen." + ], + "series": "Oriental Institute Publications 132", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "1885923406", + "extent": "Pp. xv + 456", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip132.pdf" + ] + }, + { + "title": "The Amuq Valley Regional Projects, Volume 1 - Surveys in the Plain of Antioch and Orontes Delta, Turkey, 1995–2002.", + "authors": [ + "Kutlu Aslihan Yener." + ], + "series": "Oriental Institute Publications 131", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2005", + "isbn": "1885923325", + "extent": "Pp. xli + 293 + 145 figures + 8 plates + 5 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP_131.pdf" + ] + }, + { + "title": "Chogha Mish, Volume II. The Development of a Prehistoric Regional Center in Lowland Susiana, Southwestern Iran: Final Report on the Last Six Seasons of Excavations, 1972–1978.", + "authors": [ + "Abbas Alizadeh." + ], + "series": "Oriental Institute Publications 130", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2008", + "isbn": "188592352X, 9781885923523", + "extent": "Pp. xliv + 396; 99 figures, 31 plates, 14 tables; Database of Faunal Remains Available Online", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip130.pdf" + ] + }, + { + "title": "Nippur V. The Early Dynastic To Akkadian Transition: The Area WF Sounding At Nippur", + "authors": [ + ". Augusta McMahon." + ], + "series": "Oriental Institute Publications 129", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "1885923384", + "extent": "Pp. xxxiii + 173; 12 figures, 193 plates, 78 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip129.pdf" + ] + }, + { + "title": "The Origins of State Organizations in Prehistoric Highland Fars, Southern Iran: Excavations at Tall-e Bakun.", + "authors": [ + "Abbas Alizadeh." + ], + "series": "Oriental Institute Publications 128", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "", + "extent": "Pp. xliv + 276 + 42 charts, 76 figures, 26 plates, 51 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip128.pdf" + ] + }, + { + "title": "Megiddo 3: Final Report on the Stratum VI Excavations.", + "authors": [ + "Timothy P. Harrison", + "with contributions by Douglas L. Esse", + "Andrew Graham", + "Ronald G. V. Hancock,Patricia Paice." + ], + "series": "Oriental Institute Publications 127", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2004", + "isbn": "1885923317", + "extent": "Pp. xxxii + 255 + 128 figures (9 color) + 40 plates + 9 tables + 1 CD", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP127.pdf" + ] + }, + { + "title": "Taxes, Taxpayers, And Tax Receipts In Early Ptolemaic Thebes - Demotic and Greek Ostraca from the Oriental Institute Museum, Chicago.", + "authors": [ + "Brian P. Muhs." + ], + "series": "Oriental Institute Publications 126", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2005", + "isbn": "1885923309", + "extent": "Pp. xxv + 262; 1 figure, 32 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP126.pdf" + ] + }, + { + "title": "Excavations at Tell es-Sweyhat, Syria, Volume 2: Archaeology of the Bronze Age, Hellenistic, and Roman Remains at an Ancient Town on the Euphrates River.", + "authors": [ + "Thomas A. Holland." + ], + "series": "Oriental Institute Publications 125", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2006", + "isbn": "1885923333", + "extent": "Vol. 1: Pp. lx + 620; Vol. 2: Pp. xxix; 334 figures, 340 plates, 3 pocket plans", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip125.pdf" + ] + }, + { + "title": "Excavations at Tell Es-Sweyhat, Syria, Volume 1: On the Margin of the Euphrates: Settlement and Land Use at Tell Es-Sweyhat and in the Upper Lake Assad Area, Syria.", + "authors": [ + "Tony J. Wilkinson." + ], + "series": "Oriental Institute Publications 124", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2004", + "isbn": "1885923295", + "extent": "Pp, lii + 276 + 95 figures + 16 plates + 24 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP124.pdf" + ] + }, + { + "title": "Temple of Khonsu, Volume 3. The Graffiti on the Khonsu Temple Roof at Karnak: A Manifestation of Personal Piety.", + "authors": [ + "Helen Jacquet-Gordon." + ], + "series": "Oriental Institute Publications 123", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2003", + "isbn": "1885923260", + "extent": "Pp. xxiv + 120; 5 figures, 126 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP123.pdf" + ] + }, + { + "title": "Neo-Babylonian Texts in the Oriental Institute Collection.", + "authors": [ + "David B. Weisberg." + ], + "series": "Oriental Institute Publications 122", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2003", + "isbn": "1885923287", + "extent": "Pp. xxiv + 258; 72 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP122.pdf" + ] + }, + { + "title": "Cuneiform Texts from the Ur III Period in the Oriental Institute, Volume 2: Drehem Administrative Documents from the Reign of Amar-Suena", + "authors": [ + "Markus Hilgert." + ], + "series": "Oriental Institute Publications 121", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2003", + "isbn": "1885923244", + "extent": "Pp. xxxviii + 649; 23 figures, 79 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP121.pdf" + ] + }, + { + "title": "Excavations at the Prehistoric Mound of Chogha Bonut, Khuzestan, Iran, Seasons 1976/77, 1977/78, and 1996.", + "authors": [ + "Abbas Alizadeh." + ], + "series": "Oriental Institute Publications 120", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2003", + "isbn": "1885923236", + "extent": "Pp. xxxii + 161; 47 figures, 26 plates, 16 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP120.pdf" + ] + }, + { + "title": "Theban Desert Road Survey in the Egyptian Western Desert, Volume 1: Gebel Tjauti Rock Inscriptions 1-45 and Wadi el-Hôl Rock Inscriptions 1-45.", + "authors": [ + "J. C. Darnell", + "with the assistance of D. Darnell." + ], + "series": "Oriental Institute Publications 119", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2002", + "isbn": "1885923171", + "extent": "Pp. lvi + 174; 2 figures, 126 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP119.pdf" + ] + }, + { + "title": "Scarabs, Scaraboids, Seals, and Seal Impressions from Medinet Habu.", + "authors": [ + "Emily Teeter." + ], + "series": "Oriental Institute Publications 118", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2003", + "isbn": "1885923228", + "extent": "Pp. xxiv + 249; 3 figures,110 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP118.pdf" + ] + }, + { + "title": "Seals on the Persepolis Fortification Tablets, Volume I: Images of Heroic Encounter.", + "authors": [ + "Mark B. GarrisonMargaret Cool Root." + ], + "series": "Figure 1. Reconstructed Drawings of Select Cylinders in Volume I.", + "publisherLocation": "Chicago", + "publisher": [ + "Pages" + ], + "publicationDate": "68", + "isbn": "", + "extent": "Plate 4. Photographs and drawing of Catalog Number 4 = PFS 7*.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP117P1.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/OIP117P2.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions at Luxor Temple, Volume 2: The Facade, Portals, Upper Register Scenes, Columns, Marginalia, and Statuary in the Colonnade Hall.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 116", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1998", + "isbn": "9781885923110", + "extent": "Pp. xxviii + 100 in booklet; 99 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip116.pdf" + ] + }, + { + "title": "Cuneiform Texts from the Ur III Period in the Oriental Institute, Volume 1: Drehem Administrative Documents from the Reign of Shulgi.", + "authors": [ + "M. Hilgert." + ], + "series": "Oriental Institute Publications 115", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1998", + "isbn": "1885923074", + "extent": "Pp. xxxii + 576, 44 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip115.pdf" + ] + }, + { + "title": "Nippur IV: The Early Neo-Babylonian Governor’s Archive from Nippur.", + "authors": [ + "S. W. Cole." + ], + "series": "Oriental Institute Publications 114", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1996", + "isbn": "1885923031", + "extent": "Pp. xliv + 458, 3 figures, 128 text copies", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip114.pdf" + ] + }, + { + "title": "The Oriental Institute Hawara Papyri: Demotic and Greek Texts from an Egyptian Family Archive in the Fayum (Fourth to Third Century B.C.).", + "authors": [ + "G. R. HughesR. Jasnow." + ], + "series": "Oriental Institute Publications 113", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1997", + "isbn": "1885923023", + "extent": "Clothbound 9 x 11.75 in / 23 x 30 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip113.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions at Luxor Temple, Volume 1: The Festival Procession of Opet in the Colonnade Hall.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 112", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1994", + "isbn": "9780918986948", + "extent": "Pp. xxvi + 60 in booklet; 128 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip112.pdf" + ] + }, + { + "title": "Nippur III: Kassite Buildings in Area WC-1.", + "authors": [ + "R. L. Zettler." + ], + "series": "Oriental Institute Publications 111", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1993", + "isbn": "0918986915", + "extent": "Pp. xxxvii + 347; 3 figures, 109 plates, 26 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip111.pdf" + ] + }, + { + "title": "Town and Country in Southeastern Anatolia, Volume 2: The Stratigraphic Sequence at Kurban Höyük.", + "authors": [ + "G. Algaze", + "", + "et. al." + ], + "series": "Oriental Institute Publications 110", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "0918986656", + "extent": "Pp. xl + 438; 139 figures, 50 tables; 169 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip110_text.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip110_plates.pdf" + ] + }, + { + "title": "Town and Country in Southeastern Anatolia, Volume 1: Settlement and Land Use at Kurban Höyük and Other Sites in the Lower Karababa Basin.", + "authors": [ + "T. J. Wilkinson", + "et. al." + ], + "series": "Oriental Institute Publications 109", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "0918986648", + "extent": "Pp. xix + 315; 90 figures, 4 plates, 20 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip109.pdf" + ] + }, + { + "title": "The Holmes Expeditions to Luristan.", + "authors": [ + "E. F. Schmidt", + "et. al." + ], + "series": "Oriental Institute Publications 108", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1989", + "isbn": "0918986532", + "extent": "Pp. xv + 594; 20 catalogs, 32 tables, 265 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip108_text.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip108_errata.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip108_plates.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions at Karnak, Volume IV: The Battle Reliefs of King Sety I.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Chicago: The Oriental Institute, 1986", + "publisherLocation": "Chicago", + "publisher": [ + "ISBN" + ], + "publicationDate": "0", + "isbn": "", + "extent": "Pp. xxiv + 166 (including 2 figures) in booklet; 50 plates + key plan", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip107.pdf" + ] + }, + { + "title": "The Great Hypostyle Hall at Karnak, Volume 1, Part 1: The Wall Reliefs.", + "authors": [ + "Harold Hayden Nelson. William J. Murnane," + ], + "series": "Oriental Institute Publications 106", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "", + "isbn": "0918986303", + "extent": "Pp. xxv; 267 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip106.pdf" + ] + }, + { + "title": "Prehistoric Archeology Along the Zagros Flanks.", + "authors": [ + "L. S. Braidwood", + "et. al." + ], + "series": "Oriental Institute Publications 105", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1983", + "isbn": "0918986362", + "extent": "Pp. ix + 695, 5 charts, 244 figures, 185 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip105.pdf" + ] + }, + { + "title": "Earliest Land Tenure Systems in the Near East: Ancient Kudurrus.", + "authors": [ + "I. J. Gelb", + "et. al. ," + ], + "series": "Oriental Institute Publications 104", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1989", + "isbn": "9780918986566", + "extent": "Pp. xviii + 303; 166 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip104_text.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip104_part_2.pdf" + ] + }, + { + "title": "The Temple of Khonsu, Volume 2: Scenes and Inscriptions in the Court and the First Hypostyle Hall.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 103", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1981", + "isbn": "9780918986283", + "extent": "Large portolio 14.5 x 18.5 in / 37 x 47 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip103.pdf" + ] + }, + { + "title": "The Tomb of Kheruef: Theban Tomb 192.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 102", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1980", + "isbn": "0918986230", + "extent": "Pp. xx + 80 (including 3 figures) in booklet; 88 plates (1 in color) + key plans", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip102.pdf" + ] + }, + { + "title": "Chogha Mish, Volume 1: The First Five Seasons, 1961–1971.", + "authors": [ + "Helene KantorP. Delougaz." + ], + "series": "Oriental Institute Publications 101", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1996", + "isbn": "9781885923011", + "extent": "Pp. lv + 508; 49 figures, 283 plates, 50 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip101_text.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip101_plates.pdf" + ] + }, + { + "title": "The Temple of Khonsu, Volume 1: Scenes of King Herihor in the Court.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 100", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1979", + "isbn": "0918986206", + "extent": "Pp. xxvii + 55; 5 figures, 110 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip100.pdf" + ] + }, + { + "title": "Inscriptions from Tell Abu Salabikh.", + "authors": [ + "R. D. Biggs." + ], + "series": "Oriental Institute Publications 99", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1974", + "isbn": "0226622029", + "extent": "Pp. xii + 112; 30 figures, 183 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip99.pdf" + ] + }, + { + "title": "Old Babylonian Public Buildings in the Diyala Region. Part One: Excavations at Ishchali, Part Two: Khafajah Mounds B, C, and D.", + "authors": [ + "H. D. Hill", + "et. al." + ], + "series": "Oriental Institute Publications 98", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "0918986621", + "extent": "Pp. xxxii + 257; 31 figures, 68 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip98.pdf" + ] + }, + { + "title": "Nippur II. The North Temple and Sounding E: Excavations of the Joint Expedition to Nippur of the American Schools of Oriental Research and the Oriental Institute of the University of Chicago.", + "authors": [ + "D. E. McCown", + "et. al." + ], + "series": "Oriental Institute Publications 97", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1978", + "isbn": "9780918986047", + "extent": "Pp. xv + 105; 15 figures, 77 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip97.pdf" + ] + }, + { + "title": "Excavations in the Plain of Antioch, Vol. II: The Structural Remains of the Later Phases: Chatal Hüyük, Tell Al-Judaidah, and Tell Tayinat.", + "authors": [ + "R. C. Haines." + ], + "series": "Oriental Institute Publications 95", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1970", + "isbn": "9780226621982", + "extent": "Pp. xiv + 66; 118 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip95.pdf" + ] + }, + { + "title": "Medinet Habu, Vol. VIII: The Eastern High Gate with Translations of Texts.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 94", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1970", + "isbn": "9780226621975", + "extent": "Pp. xxiii + 14; 10 plans, 70 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip94.pdf" + ] + }, + { + "title": "Medinet Habu, Vol. VII: The Temple Proper, Pt. III: The Third Hypostyle Hall and All Rooms Accessible from It with Friezes of Scenes from the Roof Terraces and Exterior Walls of the Temple.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 93", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1964", + "isbn": "0226621960", + "extent": "Pp. xi, 16 figures, 590 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip93.pdf" + ] + }, + { + "title": "Persepolis Fortification Tablets.", + "authors": [ + "R. T. Hallock." + ], + "series": "Oriental Institute Publications 92", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1969", + "isbn": "0226621952", + "extent": "Pp. x + 776; no illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip92.pdf" + ] + }, + { + "title": "Aramaic Ritual Texts from Persepolis.", + "authors": [ + "R. A. Bowman." + ], + "series": "Oriental Institute Publications 91", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1970", + "isbn": "0226621944", + "extent": "Pp. xiii + 194; 2 figures, 36 plates, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip91.pdf" + ] + }, + { + "title": "Ptolemais: City of the Libyan Pentapolis.", + "authors": [ + "Carl H. Kraeling." + ], + "series": "Oriental Institute Publications 90", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1962", + "isbn": "9780226621937", + "extent": "Pp. xv + 288; 74 figures, 64 plates, 22 plans", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip90.pdf" + ] + }, + { + "title": "Private Houses and Graves in the Diyala Region.", + "authors": [ + "Pinhas Delougaz", + "Harold D. Hill,Seton Lloyd." + ], + "series": "Oriental Institute Publications 88", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1967", + "isbn": "", + "extent": "Pp. xvii + 361; 100 figures, 3 tables, 82 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip88.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts 7, Texts of Spells 787–1185.", + "authors": [ + "Adriaan de Buck." + ], + "series": "Oriental Institute Publications 87", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1961", + "isbn": "", + "extent": "Pp. xvii + 539", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip87.pdf" + ] + }, + { + "title": "The Tomb of Tjanefer at Thebes.", + "authors": [ + "Keith C. Seele. Originally published in" + ], + "series": "Oriental Institute Publications 86", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1959", + "isbn": "", + "extent": "Pp. x + 10; 41 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip86.pdf" + ] + }, + { + "title": "A Byzantine Church at Khirbat al-Karak.", + "authors": [ + "Pinhas DelougazRichard C. Haines." + ], + "series": "Oriental Institute Publications 85", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1960", + "isbn": "", + "extent": "Pp. xi + 68; 4 tables, 62 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip85.pdf" + ] + }, + { + "title": "Medinet Habu, Volume VI. The Temple Proper, Part II: The Re Chapel, the Royal Mortuary Complex, and Adjacent Rooms with Miscellaneous Material from the Pylons, the Forecourts, and the First Hypostyle Hall.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 84", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1963", + "isbn": "", + "extent": "Pp. xix; 1 plan, 120 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip84.pdf" + ] + }, + { + "title": "Medinet Habu, Volume V. The Temple Proper, Part I: The Portico, the Treasury, and Chapels Adjoining the First Hypostyle Hall with Marginal Material from the Forecourts.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 83", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "", + "extent": "Pp. xx; 1 plan,113 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip83.pdf" + ] + }, + { + "title": "The Egyptian Book of the Dead: Documents in the Oriental Institute Museum at the University of Chicago.", + "authors": [ + "Thomas George Allen," + ], + "series": "Oriental Institute Publications 82", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1960", + "isbn": "9781885923806", + "extent": "Pp. xxxiii + 289; 131 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip82.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts, Volume 6: Texts of Spells 472–787.", + "authors": [ + "Adriaan de Buck." + ], + "series": "Oriental Institute Publications 81", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1956", + "isbn": "", + "extent": "Pp. xv + 415", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip81.pdf" + ] + }, + { + "title": "Demotic Ostraca from Medinet Habu.", + "authors": [ + "Miriam Lichtheim." + ], + "series": "Oriental Institute Publications 80", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "", + "extent": "Pp. xiii + 85; 53 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip80.pdf" + ] + }, + { + "title": "Soundings at Tell Fakhariyah.", + "authors": [ + "C. W. McEwan", + "et. al." + ], + "series": "Oriental Institute Publications 79", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "0226079449", + "extent": "Pp. xvii + 103; 87 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip79.pdf" + ] + }, + { + "title": "Nippur I, Temple of Enlil, Scribal Quarter, and Soundings: Excavations of the Joint Expedition to Nippur of the University Museum of Philadelphia and the Oriental Institute of the University of Chicago.", + "authors": [ + "Donald E. McCownRichard C. Haines", + "assisted by Donald P. Hansen." + ], + "series": "Oriental Institute Publications 78", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1967", + "isbn": "", + "extent": "Pp. xxi + 184; 3 tables, 167 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip78.pdf" + ] + }, + { + "title": "Studies in Arabic Literary Papyri, Volume III: Language and Literature.", + "authors": [ + "N. Abbott." + ], + "series": "Oriental Institute Publications 77", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1972", + "isbn": "9780226621784", + "extent": "Pp. xvi + 216; 10 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip77.pdf" + ] + }, + { + "title": "Studies in Arabic Literary Papyri II: Qur'anic Commentary and Tradition.", + "authors": [ + "N. Abbott." + ], + "series": "Oriental Institute Publications 76", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1967", + "isbn": "", + "extent": "Pp. xvi + 293; 27 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip76.pdf" + ] + }, + { + "title": "Studies in Arabic Literary Papyri I: Historical Texts.", + "authors": [ + "N. Abbott." + ], + "series": "Oriental Institute Publications 75", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "", + "extent": "Pp. xiv + 123; 13 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip75.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions at Karnak, Volume III. The Bubastite Portal.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 74", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1954", + "isbn": "", + "extent": "Pp. xiv; 1 figure, 22 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip74.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts 5: Texts of Spells 355-471.", + "authors": [ + "Adriaan de Buck." + ], + "series": "Oriental Institute Publications 73", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1954", + "isbn": "", + "extent": "Pp. xv + 400", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip73.pdf" + ] + }, + { + "title": "Stratified Cylinder Seals from the Diyala Region.", + "authors": [ + "Henri Frankfort", + "with a chapter by Thorkild Jacobsen." + ], + "series": "Oriental Institute Publications 72", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1955", + "isbn": "", + "extent": "Pp. xi + 78; 6 figures, 2 tables, 96 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip72.pdf" + ] + }, + { + "title": "Coptic Ostraca from Medinet Habu.", + "authors": [ + "Elizabeth StefanskiMiriam Lichtheim." + ], + "series": "Oriental Institute Publications 71", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1952", + "isbn": "", + "extent": "Pp. xi + 51; 1 table, 400 figures, 5 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip71.pdf" + ] + }, + { + "title": "Persepolis III: The Royal Tombs and Other Monuments.", + "authors": [ + "E. F. Schmidt." + ], + "series": "Oriental Institute Publications 70", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1970", + "isbn": "0226621707", + "extent": "Pp. xxiv + 174; 53 figures, 105 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip70.pdf" + ] + }, + { + "title": "Persepolis II: Contents of the Treasury and Other Discoveries.", + "authors": [ + "Erich F. Schmidt", + "with contributions by Sydney P. Noe et al.", + "Frederick R. Matson", + "Lawrence J. Howell,Louisa Bellinger." + ], + "series": "Oriental Institute Publications 69", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "9781885923721", + "extent": "Pp. xx + 166; 29 figures, 89 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip69.pdf" + ] + }, + { + "title": "Persepolis I: Structures, Reliefs, Inscriptions.", + "authors": [ + "Erich F. Schmidt", + "with contribution by F. R. Matson." + ], + "series": "Oriental Institute Publications 68", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1953", + "isbn": "", + "extent": "Pp. xxix + 297; 123 figures, 205 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip68.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts, Volume 4: Texts of Spells 268–354.", + "authors": [ + "Adriaan De Buck." + ], + "series": "Oriental Institute Publications 67", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1951", + "isbn": "", + "extent": "Pp. xv + 413", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip67.pdf" + ] + }, + { + "title": "Post-Ramessid Remains. The Excavation of Medinet Habu, Volume 5.", + "authors": [ + "Uvo Hölscher." + ], + "series": "Oriental Institute Publications 66", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1954", + "isbn": "", + "extent": "Pp. xiii + 81; 106 figures, 48 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip66.pdf" + ] + }, + { + "title": "Persepolis Treasury Tablets.", + "authors": [ + "George G. Cameron." + ], + "series": "Oriental Institute Publications 65", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1948", + "isbn": "", + "extent": "Pp. xviii + 214; 46 plates, 6 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip65.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts 3: Texts of Spells 164–267.", + "authors": [ + "Adriaan de Buck." + ], + "series": "Oriental Institute Publications 63", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1947", + "isbn": "", + "extent": "Pp. xv + 401", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip64.pdf" + ] + }, + { + "title": "Pottery from the Diyala Region.", + "authors": [ + "Pinhas Delougaz." + ], + "series": "Oriental Institute Publications 63", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1952", + "isbn": "0226142337", + "extent": "Pp. xxii + 182; color frontispiece, 10 figures, 3 tables, 199 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip63.pdf" + ] + }, + { + "title": "Megiddo 2. Seasons of 1935–39: Text and Plates.", + "authors": [ + "Gordon Loud." + ], + "series": "Oriental Institute Publications 62", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1948", + "isbn": "", + "extent": "Part 1, Text:Pp. xxi + 199; 416 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip62_text.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip62_plates.pdf" + ] + }, + { + "title": "Excavations in the Plain of Antioch I: The Earlier Assemblages Phases A-J.", + "authors": [ + "Robert J. BraidwoodLinda S. Braidwood." + ], + "series": "Oriental Institute Publications 61", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1960", + "isbn": "", + "extent": "Pp. xxvii + 601; 89 plates, 386 figures, 5 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip61.pdf" + ] + }, + { + "title": "More Sculpture from the Diyala Region.", + "authors": [ + "Henri Frankfort." + ], + "series": "Oriental Institute Publications 60", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1943", + "isbn": "", + "extent": "Pp. xiii + 48; frontispiece; 6 figures; 1 map; 1 table; 95 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip60.pdf" + ] + }, + { + "title": "Tall-i-Bakun A: Season of 1932.", + "authors": [ + "Alexander LangsdorffDonald E. McCown." + ], + "series": "Oriental Institute Publications 59", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "Pp. xi + 82; 19 figures; 1 table; 85 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip59.pdf" + ] + }, + { + "title": "Pre-Sargonid Temples in the Diyala Region.", + "authors": [ + "Pinhas DelougazSeton Lloyd", + "with chapters by Henri FrankfortThorkild Jacobsen." + ], + "series": "Oriental Institute Publications 58", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "Pp. xvii + 320; 213 figures, 1 map, 28 plates, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip58.pdf" + ] + }, + { + "title": "Nuzi Personal Names.", + "authors": [ + "Ignace J. Gelb", + "Pierre M. Purves,Allan A. MacRae." + ], + "series": "Oriental Institute Publications 57", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1943", + "isbn": "", + "extent": "Pp. xviii + 324", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip57.pdf" + ] + }, + { + "title": "Key Plans Showing Locations of Theban Temple Decorations.", + "authors": [ + "Harold Hayden Nelson." + ], + "series": "Oriental Institute Publications 56", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1941", + "isbn": "", + "extent": "Pp. xi; 38 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip56.pdf" + ] + }, + { + "title": "The Excavation of Medinet Habu, Volume IV. The Mortuary Temple of Ramses III, Part II.", + "authors": [ + "Uvo Hölscher", + "with contributions by Rudolf Anthes." + ], + "series": "Oriental Institute Publications, Volume 55", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1951", + "isbn": "", + "extent": "", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip55.pdf" + ] + }, + { + "title": "The Mortuary Temple of Ramses III, Part 1. The Excavation of Medinet Habu, Volume 3.", + "authors": [ + "Uvo Hölscher." + ], + "series": "Oriental Institute Publications 54", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1941", + "isbn": "", + "extent": "Pp. xiii + 87; 56 figures, 40 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip54.pdf" + ] + }, + { + "title": "The Temple Oval at Khafajah.", + "authors": [ + "Pinhas Delougaz", + "with a chapter by Thorkild Jacobsen." + ], + "series": "Oriental Institute Publications 53", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xix + 175; Frontispiece; 126 figures; 12 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip53.pdf" + ] + }, + { + "title": "The Megiddo Ivories.", + "authors": [ + "Gordon Loud." + ], + "series": "Oriental Institute Publications 52", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xi + 25; 8 figures, 63 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip52.pdf" + ] + }, + { + "title": "Medinet Habu, Volume 4. Festival Scenes of Ramses III.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 51", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xii; 1 key plan, 57 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip51.pdf" + ] + }, + { + "title": "The Rise of the North Arabic Script and Its Kur'anic Development, with a Full Description of the Kur'an Manuscripts in the Oriental Institute", + "authors": [ + ". Nabia Abbott." + ], + "series": "Oriental Institute Publications 50", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xxii + 103; 33 plates, 1 text figure, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip50.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts, Volume 2: Texts of Spells 76–163.", + "authors": [ + "Adriaan De Buck." + ], + "series": "Oriental Institute Publications 49", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xiv + 405", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip49.pdf" + ] + }, + { + "title": "Mounds in the Plain of Antioch: An Archeological Survey.", + "authors": [ + "Robert J. Braidwood." + ], + "series": "Oriental Institute Publications 48", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1937", + "isbn": "", + "extent": "Pp. xi + 67; 9 figures, 27 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip48.pdf" + ] + }, + { + "title": "Ancient Oriental Cylinder and Other Seals with a Description of the Collection of Mrs. William H. Moore.", + "authors": [ + "Gustavus A. Eisen." + ], + "series": "Oriental Institute Publications 47", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xiii + 94; 17 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip47.pdf" + ] + }, + { + "title": "Paleolithic Man and the Nile Valley in Lower Egypt with Some Notes upon a Part of the Red Sea Littoral: A Study of the Regions during Pliocene and Pleistocene Times.", + "authors": [ + "K. S. SandfordW. J. Arkell." + ], + "series": "Oriental Institute Publications 46", + "publisherLocation": "Chicago", + "publisher": [ + "Prehistoric Survey of Egypt and Western Asia Volume IV" + ], + "publicationDate": "", + "isbn": "", + "extent": "Chicago: The University of Chicago Press, 1939", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip46.pdf" + ] + }, + { + "title": "Hittite Hieroglyphic Monuments.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Oriental Institute Publications 45", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xviii + 40; 4 figures, 1 map, 94 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip45.pdf" + ] + }, + { + "title": "Sculpture of the Third Millennium B.C. from Tell Asmar and Khafajah.", + "authors": [ + "Henri Frankfort." + ], + "series": "Oriental Institute Publications 44", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xiii + 87; color frontispiece; 5 figures; 115 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip44.pdf" + ] + }, + { + "title": "The Gimilsin Temple and the Palace of the Rulers at Tell Asmar.", + "authors": [ + "Henri Frankfort", + "Seton Lloyd,Thorkild Jacobsen", + "with a chapter by Günter Martiny." + ], + "series": "Oriental Institute Publications 43", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xviii + 271; 131 figures, frontispiece, 24 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip43.pdf" + ] + }, + { + "title": "Megiddo 1. Seasons of 1925–34: Strata I–V.", + "authors": [ + "Robert S. LamonGeoffrey M. Shipton." + ], + "series": "Oriental Institute Publications 42", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "0226142337", + "extent": "Pp. xxii + 182; color frontispiece; 10 figures; 3 tables; 199 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip42.pdf" + ] + }, + { + "title": "The Excavation of Medinet Habu, Volume 2: The Temples of the Eighteenth Dynasty.", + "authors": [ + "Uvo Hölscher." + ], + "series": "Oriental Institute Publications 41", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xvii + 123; 3 tables, 96 figures, 58 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip41.pdf" + ] + }, + { + "title": "Khorsabad, Part 2: The Citadel and the Town.", + "authors": [ + "Gordon LoudCharles B. Altman." + ], + "series": "Oriental Institute Publications 40", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xxi + 115; 12 figures, 91 plates [3 in color]", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip40.pdf" + ] + }, + { + "title": "The Mastaba of Mereruka, Part II: Chamber A 11-13, Doorjambs and Inscriptions of Chambers A 1-21, Tomb Chamber, and Exterior.", + "authors": [ + "The Sakkarah Expedition." + ], + "series": "Oriental Institute Publications 39", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xiii; 7 architectural drawings, 115 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip39.pdf" + ] + }, + { + "title": "Khorsabad, Part 1: Excavations in the Palace and at a City Gate.", + "authors": [ + "Gordon Loud." + ], + "series": "Oriental Institute Publications 38", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xv + 139; 129 figures, frontispiece, 3 plates in color", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip38.pdf" + ] + }, + { + "title": "Ancient Oriental Seals in the Collection of Mrs. Agnes Baldwin Brett.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Publications 37", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xi + 76; 20 figures; 12 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip37.pdf" + ] + }, + { + "title": "Medinet Habu Graffiti: Facsimiles.", + "authors": [ + "William F. Edgerton," + ], + "series": "Oriental Institute Publications 36", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1937", + "isbn": "", + "extent": "Pp. xi + 6, 11 figures + 103 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip36.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions at Karnak, Volume II. Ramses III's Temple within the Great Inclosure of Amon, Part II; and Ramses III's Temple in the Precinct of Mut.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications, Volume 35", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xi; 5 plans, 47 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip35.pdf" + ] + }, + { + "title": "The Egyptian Coffin Texts 1: Texts of Spells 1-75.", + "authors": [ + "Adriaan De Buck." + ], + "series": "Oriental Institute Publications, Volume 34", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xix + 405", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip34.pdf" + ] + }, + { + "title": "Megiddo Tombs.", + "authors": [ + "P. L. O. Guy." + ], + "series": "Oriental Institute Publications 33", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xxiv + 224; 206 figures, 176 plates, 6 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip33.pdf" + ] + }, + { + "title": "The Megiddo Water System.", + "authors": [ + "Robert S. Lamon." + ], + "series": "Oriental Institute Publications 32", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xii + 41; 30 figures, 8 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip32.pdf" + ] + }, + { + "title": "The Mastaba of Mereruka, Part I. Chambers A 1-10.", + "authors": [ + "The Sakkara Expedition." + ], + "series": "Oriental Institute Publications 31", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xxv + 18; 8 plans and drawings, 103 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip31.pdf" + ] + }, + { + "title": "Researches in Anatolia 9. The Alishar Hüyük Seasons of 1930-32, Part 3.", + "authors": [ + "Hans Henning von der Osten", + "with contributions by Wilton Marion Krogmanothers." + ], + "series": "Oriental Institute Publications 30", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1937", + "isbn": "", + "extent": "pp. xxiv + 496; 289 figures, 20 maps, 15 plates, 9 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip30.pdf" + ] + }, + { + "title": "Researches in Anatolia 8. The Alishar Hüyük Seasons of 1930-32, Part 2.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Publications 29", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1937", + "isbn": "", + "extent": "Pp. xxii + 481; frontispiece, 513 figures, 25 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip29.pdf" + ] + }, + { + "title": "Researches in Anatolia 7. The Alishar Hüyük Seasons of 1930-32, Part 1.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Publications 28", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1937", + "isbn": "", + "extent": "pp. xxii + 283; 280 figures, 10 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip28.pdf" + ] + }, + { + "title": "Researches in Anatolia 6. Inscriptions from Alishar and Vicinity.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Oriental Institute Publications 27", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xv + 84; 5 figures; 63 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip27.pdf" + ] + }, + { + "title": "Material Remains of the Megiddo Cult.", + "authors": [ + "Herbert Gordon May." + ], + "series": "Oriental Institute Publications 26", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xiv + 51; 13 figures, 41 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip26.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions at Karnak, Volume I. Ramses III's Temple with the Great Inclosure of Amon, Part I.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 25", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xix; 5 figures, 78 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip25.pdf" + ] + }, + { + "title": "Sennacherib’s Aqueduct at Jerwan", + "authors": [ + "Thorkild JacobsenSeton Lloyd." + ], + "series": "Oriental Institute Publications 24", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xii + 52; 12 figures, frontispiece, 36 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip24.pdf" + ] + }, + { + "title": "Medinet Habu, Volume III. The Calendar, the “Slaughterhouse,” and Minor Records of Ramses III.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 23", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. xvi; 5 figures, 61 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip23.pdf" + ] + }, + { + "title": "Ancient Oriental Seals in the Collection of Mr. Edward T. Newell.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Publications 22", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "", + "extent": "Pp. xiii + 204; 28 figures; 41 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip22.pdf" + ] + }, + { + "title": "The Excavation of Medinet Habu, Volume 1: General Plans and Views.", + "authors": [ + "Uvo Hölscher." + ], + "series": "Oriental Institiute Publications 21", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Hardbound 19 x 24 inches", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip21.pdf" + ] + }, + { + "title": "Researches in Anatolia 5. The Alishar Hüyük Seasons of 1928 and 1929, Part 2.", + "authors": [ + "Erich F. Schmidt", + "with a chapter by Wilton Marion Krogman." + ], + "series": "Oriental Institute Publications 20", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "pp. xvii + 148; 4 tables, frontispiece, 198 figures, 11 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip20.pdf" + ] + }, + { + "title": "Researches in Anatolia 4. The Alishar Hüyük Seasons of 1928 and 1929, Part 1.", + "authors": [ + "Erich F. Schmidt." + ], + "series": "Oriental Institute Publications 19", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. xxi + 293; frontispiece, 377 figures, 46 plates", + "url": [ + "https://isac.uchicago.edu/https://isac-idb-static.uchicago.edu/multimedia/333/oip19.pdf" + ] + }, + { + "title": "Paleolithic Man and the Nile Valley in Upper and Middle Egypt: A Study of the Region during Pliocene and Pleistocene Times.", + "authors": [ + "K. S. Sandford." + ], + "series": "Oriental Institute Publications 18", + "publisherLocation": "Chicago", + "publisher": [ + "Prehistoric Survey of Egypt and Western Asia Volume III" + ], + "publicationDate": "", + "isbn": "", + "extent": "Chicago: The University of Chicago Press, 1934", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip18.pdf" + ] + }, + { + "title": "Paleolithic Man and the Nile-Faiyum Divide in Nubia and Upper Egypt: A Study of the Region during Pliocene and Pleistocene Times.", + "authors": [ + "K. S. SandfordW. J. Arkell." + ], + "series": "Oriental Institute Publications, Volume 17", + "publisherLocation": "Chicago", + "publisher": [ + "Prehistoric Survey of Egypt and Western Asia II" + ], + "publicationDate": "", + "isbn": "", + "extent": "Chicago: University of Chicago Press, 1933", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip17.pdf" + ] + }, + { + "title": "Cuneiform Series, Volume IV: Sumerian Texts of Varied Contents.", + "authors": [ + "Edward Chiera." + ], + "series": "Oriental Institute Publications 16", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "PPp. ix + 109 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip16.pdf" + ] + }, + { + "title": "Cuneiform Series, Volume III: Sumerian Epics and Myths.", + "authors": [ + "Edward Chiera." + ], + "series": "Oriental Institute Publications 15", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. xi + 8; 111 plates with 117 texts in facsimile", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip15.pdf" + ] + }, + { + "title": "Cuneiform Series, Vol. II: Inscriptions from from Adab.", + "authors": [ + "Daniel David Luckenbill." + ], + "series": "Oriental Institute Publications 14", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "", + "extent": "Pp. ix + 8; 87 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip14.pdf" + ] + }, + { + "title": "Barhebraeus' Scholia on the Old Testament. Part I: Genesis - II Samuel.", + "authors": [ + "Martin SprenglingWilliam Creighton Graham," + ], + "series": "Oriental Institute Publications 13", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. xvi + 393; 142 text illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip13.pdf" + ] + }, + { + "title": "The Proverbs of Solomon in Sahidic Coptic According to the Chicago Manuscript.", + "authors": [ + "William H. Worrell," + ], + "series": "Oriental Institute Publications 12", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. xxxii + 107; 1 plate", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip12.pdf" + ] + }, + { + "title": "Cuneiform Series, Volume I: Sumerian Lexical Texts from the Temple School of Nippur.", + "authors": [ + "Edward Chiera." + ], + "series": "Oriental Institute Publications 11", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "", + "extent": "Pp. xi + 19; 126 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip11.pdf" + ] + }, + { + "title": "Prehistoric Survey of Egypt and Western Asia, Vol. I: Paleolithic Man and the Nile-Faiyum Divide: A Study of the Region During Pliocene and Pleistocene Times.", + "authors": [ + "K. S. SandfordW. J. Arkell." + ], + "series": "Oriental Institute Publications 10", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "0226621049", + "extent": "Pp. xv + 77, 25 figures, 11 plates, 1 map (printed in color on sturdy canvas, folded at end of book)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip10.pdf" + ] + }, + { + "title": "Medinet Habu, Volume II. The Later Historical Records of Ramses III", + "authors": [ + ". The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 9", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. x; 6 figures, 76 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip9.pdf" + ] + }, + { + "title": "Medinet Habu, Volume I. Earlier Historical Records of Ramses III.", + "authors": [ + "The Epigraphic Survey." + ], + "series": "Oriental Institute Publications 8", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "", + "extent": "Pp. xviii + 10; 2 figures, 54 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip8.pdf" + ] + }, + { + "title": "Researches in Anatolia 3. The Alishar Hüyük Season of 1927, Part 2.", + "authors": [ + "Hans Henning von der OstenErich F. Schmidt." + ], + "series": "Oriental Institute Publications 7", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "pp. xii + 134; frontispiece, 106 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip7.pdf" + ] + }, + { + "title": "Researches in Anatolia 2. The Alishar Hüyük Season of 1927, Part 1.", + "authors": [ + "Hans Henning von der OstenErich F. Schmidt." + ], + "series": "Oriental Institute Publications 6", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "", + "extent": "Pp. xii + 284; 251 figures, 5 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip6.pdf" + ] + }, + { + "title": "OIP 5.Researches in Anatolia 1. Explorations in Central Anatolia, Season of 1926.", + "authors": [ + "Hans Henning von der Osten." + ], + "series": "Oriental Institute Publications 5", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1929", + "isbn": "", + "extent": "Pp. xix + 167; 242 figures; 24 plates; 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip5.pdf" + ] + }, + { + "title": "OIP 4.The Edwin Smith Surgical Papyrus, Volume 2: Facsimile Plates and Line for Line Hieroglyphic Transliteration.", + "authors": [ + "James Henry Breast Originally published in ", + "revised in" + ], + "series": "Oriental Institute Publications 4", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "9780918986733", + "extent": "Pp. xiii, 46 color plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip4.pdf" + ] + }, + { + "title": "The Edwin Smith Surgical Papyrus, Volume 1: Hieroglyphic Transliteration, Translation, and Commentary.", + "authors": [ + "James Henry Breast Originally published in ", + "revised in" + ], + "series": "Oriental Institute Publications 3", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1930", + "isbn": "9780918986733", + "extent": "Pp. xxiv + 596, 8 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip3.pdf" + ] + }, + { + "title": "The Annals of Sennacherib.", + "authors": [ + "Daniel David Luckenbill." + ], + "series": "Oriental Institute Publications 2", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1924", + "isbn": "", + "extent": "Pp. xi + 196; 2 plates; 25 pages of autographed texts", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip2.pdf" + ] + }, + { + "title": "Oriental Forerunners of Byzantine Painting: First-Century Wall Paintings from the Fortress of Dura on the Middle Euphrates.", + "authors": [ + "James Henry Breast" + ], + "series": "Oriental Institute Publications 1", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1924", + "isbn": "", + "extent": "Pp. 105, 58 figures, 23 plates, 2 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oip1.pdf" + ] + }, + { + "title": "“Like ʾIlu Are You Wise”: Studies in Northwest Semitic Languages and Literatures in Honor of Dennis G. Pardee.", + "authors": [ + "H. H. Hardy II", + "Joseph Lam,Eric D. Reymond," + ], + "series": "Studies in Ancient Oriental Civilization 73", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2022", + "extent": "Pp. lii + 596; 44 illustrations", + "isbn": "9781614910756", + "url": [] + }, + { + "title": "The Ritual Landscape at Persepolis.", + "authors": [ + "Mark B. Garrison." + ], + "series": "Studies in Ancient Oriental Civilization 72", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2017", + "extent": "Pp. xlvi+ 448; 202figures, 63 plates", + "isbn": "9781614910343", + "url": [] + }, + { + "title": "From Sherds to Landscapes: Studies on the Ancient Near East in Honor of McGuire Gibson.", + "authors": [ + "Mark AltaweelCarrie Hritz," + ], + "series": "Studies in Ancient Oriental Civilization 71", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2021", + "isbn": "9781614910633, 9781614910640", + "extent": "Pp. 364 (xxvi + 338);224 figures(many color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/SAOC/saoc71.pdf" + ] + }, + { + "title": "Essays for the Library of Seshat: Studies Presented to Janet H. Johnson on the Occasion of Her 70th Birthday.", + "authors": [ + "Robert K. Ritner," + ], + "series": "Studies in Ancient Oriental Civilization 70", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2017", + "isbn": "9781614910329", + "extent": "Pp. xii+ 452; 262 illustrations (many color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/SAOC/saoc70.pdf" + ] + }, + { + "title": "Creativity and Innovation in the Reign of Hatshepsut.", + "authors": [ + "José M. Galán", + "Betsy M. Bryan,Peter F. Dorman," + ], + "series": "Studies in Ancient Oriental Civilization 69", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2014", + "isbn": "9781614910244", + "extent": "Pp. lxx +442; 284 figures,6 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc69.pdf" + ] + }, + { + "title": "Extraction & Control: Studies in Honor of Matthew W. Stolper.", + "authors": [ + "Michael Kozuh", + "Wouter F. M. Henkelman", + "Charles E. Jones,Christopher Woods," + ], + "series": "Studies in Ancient Oriental Civilization 68", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2014", + "isbn": "9781614910015", + "extent": "Pp. xvi + 352; frontispiece (Matthew W. Stolper); 140 illustrations, 9 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc68.pdf" + ] + }, + { + "title": "Language and Nature: Papers Presented to John Huehnergard on the Occasion of His 60th Birthday.", + "authors": [ + "Rebecca HasselbachNa’ama Pat-El," + ], + "series": "Studies in Ancient Oriental Civilization 67", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2012", + "isbn": "9781885923912", + "extent": "Pp. xxii + 476 (frontispiece John Huehnergard); 3 tables, 30 original illustrations, 32 linked mp4 videos", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc67.pdf" + ] + }, + { + "title": "Pesher Nahum: Texts and Studies in Jewish History and Literature from Antiquity through the Middle Ages Presented to Norman (Nahum) Golb.", + "authors": [ + "Joel L. KraemerMichael G. Wechsler", + "", + "with the participation of Fred Donner", + "Joshua Holo,Dennis Pardee." + ], + "series": "Studies in Ancient Oriental Civilization 66", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2012", + "isbn": "9781885923875", + "extent": "Pp. xxiv + 360 + 56* (Hebrew); frontispiece (Norman Golb), 2 figures, 13 plates, 2 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc66.pdf" + ] + }, + { + "title": "Perspectives on Ptolemaic Thebes. Occasional Proceedings of the Theban Workshop.", + "authors": [ + "Peter F. DormanBetsy M. Bryan," + ], + "series": "Studies in Ancient Oriental Civilization 65", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2011", + "isbn": "9781885923851", + "extent": "Pp. xiv + 146; 77 figures, 5 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc65.pdf" + ] + }, + { + "title": "Grammatical Case in the Languages of the Middle East and Europe. Acts of the International Colloquium Variations, concurrence et evolution des cas dans divers domaines linguistiques, Paris, 2-4 April 2007.", + "authors": [ + "Michèle Fruyt", + "Michel Mazoyer,Dennis Pardee," + ], + "series": "Studies in Ancient Oriental Civilization 64", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2011", + "isbn": "9781885923844, 1885923848", + "extent": "Pp. viii+ 420; 25 figures, 3 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc64.pdf" + ] + }, + { + "title": "Beyond the Ubaid: Transformation and Integration in the Late Prehistoric Societies of the Middle East.", + "authors": [ + "Robert A. CarterGraham Philip," + ], + "series": "Studies in Ancient Oriental Civilization 63", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2010", + "isbn": "9781885923660", + "extent": "Pp. ix + 396; 147 figures, 11 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc63.pdf" + ] + }, + { + "title": "Proceedings of the 51st Rencontre Assyriologique Internationale, Held at the Oriental Institute of the University of Chicago, July 18–22, 2005.", + "authors": [ + "" + ], + "series": "Studies in Ancient Oriental Civilization 62", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2008", + "isbn": "9781885923547", + "extent": "ISBN-10: 1-885923-54-6", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc62.pdf" + ] + }, + { + "title": "Sacred Space and Sacred Function in Ancient Thebes.", + "authors": [ + "Peter F. DormanBetsy M. Bryan," + ], + "series": "Studies in Ancient Oriental Civilization 61", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2007", + "extent": "Pp. xxiv + 192; 122 figures", + "isbn": "9781885923462", + "url": [] + }, + { + "title": "Studies in Semitic and Afroasiatic Linguistics Presented to Gene B. Gragg.", + "authors": [ + "Cynthia L. Miller," + ], + "series": "Studies in Ancient Oriental Civilization 60", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2007", + "isbn": "9781885923417, 1885923414", + "extent": "Pp. xxviii + 220; frontispiece (Gene B. Gragg), 16 figures, 2 maps, 9 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc60.pdf" + ] + }, + { + "title": "Studies in the Archaeology of Israel and Neighboring Lands in Memory of Douglas L. Esse.", + "authors": [ + "Samuel R. Wolff," + ], + "series": "Studies in Ancient Oriental Civilization 59", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2001", + "isbn": "1885923155", + "extent": "Pp. xviii + 704, 184 figures, 21 plates, 46 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/SAOC59.pdf" + ] + }, + { + "title": "Gold of Praise: Studies on Ancient Egypt in Honor of Edward F. Wente.", + "authors": [ + "E. TeeterJ. A. Larson," + ], + "series": "Studies in Ancient Oriental Civilization 58", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1999", + "isbn": "1885923090", + "extent": "Pp. xxxi + 494, 140 figures, 7 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc58.pdf" + ] + }, + { + "title": "The Presentation of Maat: Ritual and Legitimacy in Ancient Egypt.", + "authors": [ + "Emily Teeter." + ], + "series": "Studies in Ancient Oriental Civilization 57", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1997", + "isbn": "1885923058", + "extent": "Pp. l + 166; 24 plates, 4 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc57.pdf" + ] + }, + { + "title": "Portrait Mummies from Roman Egypt (I-IV Centuries A.D.) with a Catalog of Portrait Mummies in Egyptian Museums.", + "authors": [ + "Lorelei H. Corcoran." + ], + "series": "Studies in Ancient Oriental Civilization 56", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1995", + "isbn": "9780918986993", + "extent": "Pp. xxx + 250; 42 figures, 2 maps, 5 tables, 32 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc56.pdf" + ] + }, + { + "title": "For His Ka: Essays Offered in Memory of Klaus Baer.", + "authors": [ + "D. P. Silverman," + ], + "series": "Studies in Ancient Oriental Civilization 55", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1994", + "isbn": "0918986931", + "extent": "Pp. xxviii + 332, 75 figures, 7 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc55.pdf" + ] + }, + { + "title": "The Mechanics of Ancient Egyptian Magial Practice.", + "authors": [ + "R. K. Ritner." + ], + "series": "Studies in Ancient Oriental Civilization 54", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1993", + "isbn": "0918986753", + "extent": "Pp. xviii + 322, 22 figures, 2 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc54_4th.pdf" + ] + }, + { + "title": "Glass from Quseir al-Qadim and the Indian Ocean Trade.", + "authors": [ + "C. Meyer." + ], + "series": "Studies in Ancient Oriental Civilization 53", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1992", + "extent": "Pp. xvi + 200, 6 figures, 21 plates", + "isbn": "0918986664", + "url": [] + }, + { + "title": "A Late Period Hieratic Wisdom Text (P. Brooklyn 47.218.135).", + "authors": [ + "R. Jasnow." + ], + "series": "Studies in Ancient Oriental Civilization 52", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1992", + "isbn": "0918986850", + "extent": "Pp. xviii + 240, 20 figures, 4 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc52.pdf" + ] + }, + { + "title": "Life in a Multi-Cultural Society: Egypt from Cambyses to Constantine and Beyond.", + "authors": [ + "Janet Johnson." + ], + "series": "Studies in Ancient Oriental Civilization 51", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1992", + "isbn": "0918986842", + "extent": "Pp. xxvii + 514; 10 figures; 32 plates; 5 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc51.pdf" + ] + }, + { + "title": "Subsistence, Trade, and Social Change in Early Bronze Age Palestine.", + "authors": [ + "D. L. Esse." + ], + "series": "Studies in Ancient Oriental Civilization 50", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "0918986664", + "extent": "Pp. xvii + 219, 36 figures, 9 plates, 6 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc50.pdf" + ] + }, + { + "title": "A Critical Study of the Temple Scroll from Qumran Cave 11.", + "authors": [ + "M. O. Wise." + ], + "series": "Studies in Ancient Oriental Civilization 49", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "091898663X", + "extent": "Pp. xvii + 292, 8 figures, 2 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc49.pdf" + ] + }, + { + "title": "Egyptian Phyles in the Old Kingdom: The Evolution of a System of Social Organization.", + "authors": [ + "Ann Macy Roth. D. L. Esse." + ], + "series": "Studies in Ancient Oriental Civilization 48", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "", + "extent": "Pp. xxvi + 243, 27 figures, 1 appendix, 5 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc48.pdf" + ] + }, + { + "title": "Essays in Ancient Civilization Presented to Helene J. Kantor.", + "authors": [ + "A. Leonard", + "Jr.B. B. Williams," + ], + "series": "Studies in Ancient Oriental Civilization 47", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1989", + "isbn": "0918986575", + "extent": "Pp. xxxix + 393, 52 figures, 72 plates, 6 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc47.pdf" + ] + }, + { + "title": "The Organization of Power: Aspects of Bureaucracy in the Ancient Near East.", + "authors": [ + "McGuire GibsonRobert D. Biggs", + " (Second Edition with Corrections)." + ], + "series": "Studies in Ancient Oriental Civilization 46", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1991", + "isbn": "", + "extent": "Pp. xii + 168; 15 figures, 10 plates, 1 table, 3 appendices", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc46.pdf" + ] + }, + { + "title": "Thus Wrote ‘Onchsheshonqy — An Introductory Grammar of Demotic (Third Edition)", + "authors": [ + ". Janet H. Johnson. Third edition," + ], + "series": "Studies in Ancient Oriental Civilization 45", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1991", + "isbn": "0–918986–76–1", + "extent": "Pp. vii + 126 (paperback, 8 x 10 inches)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc45.pdf" + ] + }, + { + "title": "Nippur Neighborhoods.", + "authors": [ + "E. C. Stone." + ], + "series": "Studies in Ancient Oriental Civilization 44", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1987", + "isbn": "0918986508", + "extent": "Pp. xviii + 294, 7 figures, 94 plates, 24 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc44.pdf" + ] + }, + { + "title": "A Neolithic Village at Tell El Kowm in the Syrian Desert.", + "authors": [ + "R. Dornemann." + ], + "series": "Studies in Ancient Oriental Civilization 43", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1986", + "isbn": "0918986451", + "extent": "Pp. xii + 89, 46 plates, 4 serial lists, 12 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc43.pdf" + ] + }, + { + "title": "The Road to Kadesh: A Historical Interpretation of the Battle Reliefs of King Sety I at Karnak.", + "authors": [ + "W. J. Murnane." + ], + "series": "Studies in Ancient Oriental Civilization 42", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "0918986672", + "extent": "Pp. xvi + 157, 3 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc42_2ed.pdf" + ] + }, + { + "title": "Ecology and Empire: The Structure of the Urartian State.", + "authors": [ + "Paul E. Zimansky." + ], + "series": "Studies in Ancient Oriental Civilization 41", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1985", + "extent": "Pp. xv + 141; 15 figures, 15 plates, 17 tables", + "isbn": "", + "url": [] + }, + { + "title": "Ancient Egyptian Coregencies.", + "authors": [ + "William J. Murnane." + ], + "series": "Studies in Ancient Oriental Civilization 40", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1977", + "isbn": "", + "extent": "Pp. xviii + 272; 8 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc40.pdf" + ] + }, + { + "title": "Studies in Honor of George R. Hughes, January 12, 1977.", + "authors": [ + "J. H. JohnsonE. F. Wente," + ], + "series": "Studies in Ancient Oriental Civilization 39", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1976", + "isbn": "091898601X", + "extent": "Paperbound 6.75 x 9.5 in / 17 x 24 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc39.pdf" + ] + }, + { + "title": "The Demotic Verbal System", + "authors": [ + ". Janet H. Johnson. Second printing", + "with corrections," + ], + "series": "Studies in Ancient Oriental Civilization 38", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1976", + "isbn": "", + "extent": "Pp. xv + 344; 51 tables (paperback, 6.5 x 9.5 inches)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/SAOC38.pdf" + ] + }, + { + "title": "The Book of the Dead or Going Forth by Day: Ideas of the Ancient Egyptians Concerning the Hereafter as Expressed in Their Own Terms.", + "authors": [ + "Translated by Thomas George Allen." + ], + "series": "Studies in Ancient Oriental Civilization 37", + "publisherLocation": "Chicago", + "publisher": [ + "The Unversity of Chicago Press" + ], + "publicationDate": "1974", + "isbn": "2264124102", + "extent": "Pp. x + 306", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc37.pdf" + ] + }, + { + "title": "The Hilly Flanks and Beyond: Essays on the Prehistory of Southwestern Asia Presented to Robert J. Braidwood, November 15, 1982.", + "authors": [ + "T. Cuyler Young", + "Jr.", + "Philip E. L. Smith,Peder Mortensen," + ], + "series": "Studies in Ancient Oriental Civilization 36", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1983", + "isbn": "", + "extent": "Pp. xiii + 374; frontispiece, 97 figures, 36 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc36.pdf", + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc36_erratum.pdf" + ] + }, + { + "title": "Studies in Honor of John A. Wilson.", + "authors": [ + "E. B. Hauser," + ], + "series": "Studies in Ancient Oriental Civilization 35", + "publisherLocation": "Chicago", + "publisher": [ + "The Unversity of Chicago Press" + ], + "publicationDate": "1969", + "isbn": "0226624080", + "extent": "Pp. ix + 124, 8 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc35.pdf" + ] + }, + { + "title": "A Study of the Ba Concept in Ancient Egyptian Texts.", + "authors": [ + "Louis V. Zabkar." + ], + "series": "Studies in Ancient Oriental Civilization 34", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1968", + "isbn": "", + "extent": "Pp. xiv + 163; 6 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc34.pdf" + ] + }, + { + "title": "Late Ramesside Letters.", + "authors": [ + "Edward F. Wente." + ], + "series": "Studies in Ancient Oriental Civilization 33", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1967", + "isbn": "", + "extent": "Pp. xii + 85", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc33.pdf" + ] + }, + { + "title": "Patterns in the Early Poetry of Israel.", + "authors": [ + "Stanley Gevirtz." + ], + "series": "Studies in Ancient Oriental Civilization 32", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1963", + "isbn": "", + "extent": "Pp. x + 97", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc32.pdf" + ] + }, + { + "title": "Prehistoric Investigations in Iraqi Kurdistan.", + "authors": [ + "R. J. BraidwoodB. Howe." + ], + "series": "Studies in Ancient Oriental Civilization 31", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1960", + "isbn": "0226624048", + "extent": "Pp. xxviii + 184, 29 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc31.pdf" + ] + }, + { + "title": "Wall Scenes from the Mortuary Chapel of the Mayor Paser at Medinet Habu.", + "authors": [ + "Siegfried Schott. Translated by Elizabeth B. Hauser." + ], + "series": "Studies in Ancient Oriental Civilization 30", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "", + "extent": "Pp. xi + 21; 9 figures, 3 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc30.pdf" + ] + }, + { + "title": "Saite Demotic Land Leases.", + "authors": [ + "George Robert Hughes." + ], + "series": "Studies in Ancient Oriental Civilization 28", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1952", + "isbn": "", + "extent": "Pp. x + 111; 3 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc28.pdf" + ] + }, + { + "title": "Occurrences of Pyramid Texts with Cross Indexes of These and Other Egyptian Mortuary Texts.", + "authors": [ + "Thomas George Allen." + ], + "series": "Studies in Ancient Oriental Civilization 27", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1950", + "isbn": "", + "extent": "Pp. vii + 149", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc27.pdf" + ] + }, + { + "title": "The Calendars of Ancient Egypt.", + "authors": [ + "Richard A. Parker." + ], + "series": "Studies in Ancient Oriental Civilization 26", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1950", + "isbn": "", + "extent": "Pp. xiii + 83; 21 figures, 6 plates, 8 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc26.pdf" + ] + }, + { + "title": "The Comparative Archeology of Early Mesopotamia.", + "authors": [ + "A. L. Perkins. Originally published in (th printing", + ")." + ], + "series": "Studies in Ancient Oriental Civilization 25", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1949", + "isbn": "", + "extent": "Pp. xix + 200; 20 figures, 1 map, 3 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc25.pdf" + ] + }, + { + "title": "Babylonian Chronology, 626 B.C. – A.D. 45.", + "authors": [ + "Richard A. ParkerWaldo H. Dubberstein." + ], + "series": "Studies in Ancient Oriental Civilization 24", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "Pp. xiii + 46; 1 plate; 18 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc24.pdf" + ] + }, + { + "title": "The Comparative Stratigraphy of Early Iran.", + "authors": [ + "Donald E. McCown." + ], + "series": "Studies in Ancient Oriental Civilization 23", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1957", + "isbn": "", + "extent": "Pp. xvi + 65; 18 figures, 2 tables, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc23.pdf" + ] + }, + { + "title": "Hurrians and Subarians.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Studies in Ancient Oriental Civilization 22", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1944", + "isbn": "", + "extent": "Pp. xv + 128; 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc22.pdf" + ] + }, + { + "title": "Hittite Hieroglyphs 3.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Studies in Ancient Oriental Civilization 21", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "Pp. xix + 75; frontispiece", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc21.pdf" + ] + }, + { + "title": "Animal Remains from Tell Asmar", + "authors": [ + "Max Hilzheimer. Translated by Adolph A. Brux." + ], + "series": "Studies in Ancient Oriental Civilization 20", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1941", + "isbn": "", + "extent": "Pp. xiii + 52; 20 illustration; 8 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc20.pdf" + ] + }, + { + "title": "The Coregency of Ramses II with Seti I and the Date of the Great Hypostyle Hall at Karnak.", + "authors": [ + "Keith C. Seele." + ], + "series": "Studies in Ancient Oriental Civilization 19", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "", + "extent": "Pp. xiii + 95; 23 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc19.pdf" + ] + }, + { + "title": "The Hyksos Reconsidered.", + "authors": [ + "Robert M. Engberg." + ], + "series": "Studies in Ancient Oriental Civilization 18", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xi + 50", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc18.pdf" + ] + }, + { + "title": "Notes on the Megiddo Pottery of Strata VI-XX.", + "authors": [ + "Geoffrey M. Shipton." + ], + "series": "Studies in Ancient Oriental Civilization 17", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1939", + "isbn": "", + "extent": "Pp. xiv + 49; 1 figure, 20 plates, 1 chart", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc17.pdf" + ] + }, + { + "title": "The Monasteries of the Fayyum. By Nabia Abbott. Originally published in 1937.", + "authors": [ + "" + ], + "series": "Studies in Ancient Oriental Civilization 16", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1937", + "isbn": "", + "extent": "Pp. 66; 3 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc16.pdf" + ] + }, + { + "title": "The Kurrah Papyri from Aphrodito in the Oriental Institute.", + "authors": [ + "Nabia Abbott." + ], + "series": "Studies in Ancient Oriental Civilization 15", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xviii + 101; 4 plates, 2 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc15.pdf" + ] + }, + { + "title": "Hittite Hieroglyphs 2.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Studies in Ancient Oriental Civilization 14", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xx + 37; 2 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc14.pdf" + ] + }, + { + "title": "The Oriental Origin of Hellenistic Kingship.", + "authors": [ + "Calvin W. McEwan." + ], + "series": "Studies in Ancient Oriental Civilization 13", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. xii + 34", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc13.pdf" + ] + }, + { + "title": "Historical Records of Ramses III: The Texts in Medinet Habu Volumes 1 and 2.", + "authors": [ + "Translated With Explanatory Notes. By William F. EdgertonJohn A. Wilson." + ], + "series": "Studies in Ancient Oriental Civilization 12", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xv + 159", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc12.pdf" + ] + }, + { + "title": "Epiphanius’ Treatise on Weights and Measures: The Syriac Version.", + "authors": [ + "James Elmer Dean", + " With a Foreword by Martin Sprengling." + ], + "series": "Studies in Ancient Oriental Civilization 11", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. xv + 145", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc11.pdf" + ] + }, + { + "title": "Notes on the Chalcolithic and Early Bronze Age Pottery of Megiddo.", + "authors": [ + "Robert M. EngbergGeoffrey M. Shipton." + ], + "series": "Studies in Ancient Oriental Civilization 10", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. xiii + 91; 25 figures; 1 chart, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc10.pdf" + ] + }, + { + "title": "Die Pakhy-Sprache.", + "authors": [ + "Julius von Meszaros." + ], + "series": "Studies in Ancient Oriental Civilization 9", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1934", + "isbn": "", + "extent": "Pp. viii + 402; 1 figure, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc9.pdf" + ] + }, + { + "title": "The Thutmosid Succession.", + "authors": [ + "William F. Edgerton." + ], + "series": "Studies in Ancient Oriental Civilization 8", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "Pp. ix + 43; 5 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc8.pdf" + ] + }, + { + "title": "Plano-Convex Bricks and the Methods of Their Employment; II. The Treatment of Clay Tablets in the Field.", + "authors": [ + "Pinhas Delougaz." + ], + "series": "Studies in Ancient Oriental Civilization 7", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "Pp. xi + 57; 40 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc7.pdf" + ] + }, + { + "title": "Kitab al-Zahrah: The Book of the Flower. Composed by Abu Bakr Muhammad Ibn Abi Sulaiman Dawud Al-Isfahani.", + "authors": [ + "A. R. Nykl", + " In collaboration with Ibrahim Tuqan." + ], + "series": "Studies in Ancient Oriental Civilization 6", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. 416; 3 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc6.pdf" + ] + }, + { + "title": "A New Inscription of Xerxes from Persepolis", + "authors": [ + "Ernst E. Herzfeld." + ], + "series": "Studies in Ancient Oriental Civilization 5", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. viii + 14; 5 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc5.pdf" + ] + }, + { + "title": "Archeology and the Sumerian Problem.", + "authors": [ + "Henri Frankfort." + ], + "series": "Studies in Ancient Oriental Civilization 4", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. xi + 72; frontispiece; 10 figures; 3 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc4.pdf" + ] + }, + { + "title": "Die Hethitische Bilderschrift.", + "authors": [ + "Emil O. Forrer." + ], + "series": "Studies in Ancient Oriental Civilization 3", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1932", + "isbn": "", + "extent": "Pp. ix + 62; 45 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc3.pdf" + ] + }, + { + "title": "Hittite Hieroglyphs 1.", + "authors": [ + "Ignace J. Gelb." + ], + "series": "Studies in Ancient Oriental Civilization 2", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. xxi + 88; frontispiece", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc2.pdf" + ] + }, + { + "title": "Notes on Egyptian Marriage Chiefly in the Ptolemaic Period.", + "authors": [ + "William F. Edgerton." + ], + "series": "Studies in Ancient Oriental Civilization 1", + "publisherLocation": "Chicago", + "publisher": [ + "The University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. x + 25; 1 illustration", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/saoc1.pdf" + ] + }, + { + "title": "Lost Egypt", + "authors": [ + "The Epigraphic Survey of the Oriental Institute of the University of Chicago" + ], + "series": "Volume I", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1992", + "isbn": "0918986885", + "extent": "pp. i-viii + 10 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lost1.pdf" + ] + }, + { + "title": "Lost Egypt", + "authors": [ + "The Epigraphic Survey of the Oriental Institute of the University of Chicago" + ], + "series": "Volume II", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1992", + "isbn": "0918986893", + "extent": "pp. i-viii + 10 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lost2.pdf" + ] + }, + { + "title": "Lost Egypt", + "authors": [ + "The Epigraphic Survey of the Oriental Institute of the University of Chicago" + ], + "series": "Volume III", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "1992", + "isbn": "0918986907", + "extent": "pp. i-viii + 10 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/lost3.pdf" + ] + }, + { + "title": "The Materiality of Greek and Roman Curse Tablets: Technological Advances.", + "authors": [ + "Sofía Torallas TovarRaquel Martín Hernández," + ], + "series": "Oriental Institute Miscellaneous Publications", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2022", + "isbn": "9781614910824", + "extent": "Pp. viii + 77; 59 figures, 4 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/Greek-Roman-Curse-Tablet.pdf" + ] + }, + { + "title": "Pioneer to the Past: The Story of James Henry Breasted, Archaeologist, Told by His Son Charles Breasted.", + "authors": [ + "Charles Breast Reprint of the Charles Scribner's Sons edition with new foreword", + "photographs,maps. Published in" + ], + "series": "Pioneer to the Past: The Story of James Henry Breasted, Archaeologist, Told by His Son Charles Breasted.", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "2009", + "isbn": "9781885923677", + "extent": "Pp. ix + 436; 16 black-and-white photo plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/Pioneer2020.pdf" + ] + }, + { + "title": "Discovering New Pasts: The OI at 100", + "authors": [ + ". Theo van den Hout," + ], + "series": "Discovering New Pasts: The OI at 100", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute Miscellaneous Publications" + ], + "publicationDate": "", + "isbn": "9781614910497", + "extent": "pp. xxiv + 428; 584 images(most color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/miscdiscoveringnewpasts.pdf" + ] + }, + { + "title": "100 Highlights of the Collections of the Oriental Institute Museum", + "authors": [ + ". Jean M. Evans", + "Jack Green,Emily Teeter," + ], + "series": "100 Highlights of the Collections of the Oriental Institute Museum", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute Miscellaneous Publications" + ], + "publicationDate": "", + "isbn": "9781614910480", + "extent": "152 pp.; 140 illustrations (most in color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/MISC_100museumhighlights.pdf" + ] + }, + { + "title": "Preserving the Cultural Heritage of Afghanistan", + "authors": [ + ". Gil J. Stein", + "Michael T. Fisher", + "Abdul Hafiz Latify", + "Najibullah Popal,Nancy Hatch Dupree," + ], + "series": "Preserving the Cultural Heritage of Afghanistan: Proceedings of the International Conference Held at Kabul University, November 2014", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute Miscellaneous Publications" + ], + "publicationDate": "", + "isbn": "9781614910411", + "extent": "Pp. xvi + 168 pages English + 135 page Dari; 1 map, 113 figures in color", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/preserving-cultural-heritage-afghanistan.pdf" + ] + }, + { + "title": "Highlights of the Collections of the Oriental Institute Museum", + "authors": [ + ". Jean M. Evans", + "Jack Green,Emily Teeter," + ], + "series": "Highlights of the Collections of the Oriental Institute", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute Miscellaneous Publications" + ], + "publicationDate": "", + "isbn": "9781614910053", + "extent": "152 pp.; 140 illustrations (most in color)", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-highlights.pdf" + ] + }, + { + "title": "Nimrud: The Queens' Tombs", + "authors": [ + ". Muzahim Mahmoud Hussein. Translationinitial editing by Mark Altaweel", + "additional editingnotes by McGuire Gibson." + ], + "series": "Nimrud: The Queens’ Tombs", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute Miscellaneous Publications" + ], + "publicationDate": "", + "isbn": "9781614910220", + "extent": "Pp. xxvi + 186; 220 plates, most in color", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-2016-Nimrud-Queens-Tombs-web.pdf" + ] + }, + { + "title": "The Mosaics of Khirbet el-Mafjar: Hisham's Palace.", + "authors": [ + "Hamdan TahaDonald Whitcomb." + ], + "series": "Oriental Institute Miscellaneous Publication", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute; Ramallah: Palestinian Department of Antiquities and Cultural Heritage" + ], + "publicationDate": "2015", + "isbn": "9781614910046", + "extent": "Pp. 128; 156 color illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-Hisham-mosaics.pdf" + ] + }, + { + "title": "Digital Epigraphy", + "authors": [ + ". Krisztián Vértesthe Epigraphic Survey." + ], + "series": "Miscellaneous. Digital Epigraphy", + "publisherLocation": "Chicago", + "publisher": [ + "By Krisztián Vértes and the Epigraphic Survey" + ], + "publicationDate": "", + "isbn": "9781614910213Gratis", + "extent": "By Krisztián Vértes and the Epigraphic Survey", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Digital-Epigraphy.pdf", + "https://isac.uchicago.edu/https://itunes.apple.com/us/book/digital-epigraphy/id907434023?mt=13&ls=1" + ] + }, + { + "title": "Mesopotamian Pottery: A Guide to the Babylonian Tradition in the Second Millennium B.C.", + "authors": [ + "James A. ArmstrongHermann Gasche", + "with contributions by Steven W. Cole", + "Abraham Van As,Loe Jacobs. Mesopotamian HistoryEnvironment II", + "Memoirs IV." + ], + "series": "Mesopotamian Pottery", + "publisherLocation": "Chicago", + "publisher": [ + "Ghent and A Joint Publication of the University of Ghent and the Oriental Institute of the University of Chicago" + ], + "publicationDate": "2014", + "isbn": "Pp. xix + 102; 48 figures, 136 plates, 9 tables", + "extent": "Hardback, 24 x 34.5 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Mesopotamian_Pottery.pdf" + ] + }, + { + "title": "Islamic Bindings & Bookmaking.", + "authors": [ + "A Catalogue of an Exhibition in the Oriental Institute Museum", + "University of Chicago", + "May -August ", + " Gulnar Bosch", + "John Carswell,Guy Petherbridge." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1981", + "isbn": "", + "extent": "Pp. xii + 235; 91 B&W and 14 color illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/IslamicBindings.pdf" + ] + }, + { + "title": "The Babylonian Genesis: The Story of Creation.", + "authors": [ + "Alexander Heidel." + ], + "series": "The Babylonian Genesis: The Story of Creation", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1951", + "isbn": "", + "extent": "Pp. ix + 153; 17 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_genesis.pdf" + ] + }, + { + "title": "The Gilgamesh Epic and Old Testament Parallels.", + "authors": [ + "Alexander Heidel." + ], + "series": "The Gilgamesh Epic and Old Testament Parallels", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1949", + "isbn": "", + "extent": "Pp. ix + 269", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_gilgamesh.pdf" + ] + }, + { + "title": "Egypt through the Stereoscope: A Journey through the Land of the Pharaohs.", + "authors": [ + "James Henry Breast Electronic publication in" + ], + "series": "Egypt through the Stereoscope: A Journey through the Land of the Pharaohs", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "2010", + "isbn": "", + "extent": "Pp. xi + 187; 100 view cards, 20 maps and plans", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/stereoscope.pdf" + ] + }, + { + "title": "Settlement and Society: Essays Dedicated to Robert McCormick Adams.", + "authors": [ + "Elizabeth C. Stone", + " Joint Publication with the Cotsen Institute of Archaeology", + "University of California", + "Los Angeles." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "Joint Publication with the Cotsen Institute of Archaeology, University of California, Los Angeles" + ], + "publicationDate": "2007", + "extent": "Hardback., Paperback.", + "isbn": "", + "url": [] + }, + { + "title": "An Adventure of Great Dimension: The Launching of the Chicago Assyrian Dictionary.", + "authors": [ + "Erica Reiner." + ], + "series": "An Adventure of Great Dimension: The Launching of the Chicago Assyrian Dictionary", + "publisherLocation": "Chicago", + "publisher": [ + "Transactions of the American Philosophical Society Volume" + ], + "publicationDate": "92", + "isbn": "", + "extent": "Philadelphia: American Philosophical Society, 2002", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Adventure_of_Great_Dimension.pdf" + ] + }, + { + "title": "Letters from Egypt and Iraq, 1954.", + "authors": [ + "Margaret Bell Cameron." + ], + "series": "Letters from Egypt and Iraq, 1954", + "publisherLocation": "Chicago", + "publisher": [ + "The Development Office of the Oriental Institute of the University of Chicago" + ], + "publicationDate": "2001", + "isbn": "", + "extent": "Pp. 72; 12 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cameron_letters.pdf" + ] + }, + { + "title": "Changing Watercourses in Babylonia: Towards a Reconstruction of the Ancient Environment in Lower Mesopotamia Volume 1.", + "authors": [ + "Hermann GascheMichel Tanret," + ], + "series": "Mesopotamian History and Environment Series 2, Memoirs 5", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. x +" + ], + "publicationDate": "245", + "isbn": "", + "extent": "8.5 x 11.0 in.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/changing_watercourses.pdf" + ] + }, + { + "title": "Dating the Fall of Babylon: A Reappraisal of Second-Millennium Chronology.", + "authors": [ + "J. A. Armstrong", + "S. W. Cole,V. G. Gurzadyan." + ], + "series": "Mesopotamian History and Environment Series 2, Memoirs 4", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. vii +" + ], + "publicationDate": "104", + "isbn": "", + "extent": "8.5 x 11.0 in.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/fall_of_babylon.pdf" + ] + }, + { + "title": "Ayla: Art and Industry in the Islamic Port of Aqaba.", + "authors": [ + "D. Whitcomb." + ], + "series": "Ayla: Art and Industry in the Islamic Port of Aqaba", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1994", + "isbn": "0918986974", + "extent": "Pp. 32; 37 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_ayla.pdf" + ] + }, + { + "title": "Letters from Turkey, 1939–1946.", + "authors": [ + "G. Maynard." + ], + "series": "Letters from Turkey, 1939-1946", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1994", + "isbn": "0918986966", + "extent": "Pp. viii + 298, 16 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_letters_turkey.pdf" + ] + }, + { + "title": "Uch Tepe II: Technical Reports.", + "authors": [ + "McG. Gibson," + ], + "series": "Uch Tepe II: Technical Reports", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "0918986613", + "extent": "Pp. 140, 69 figures, 5 plates, 38 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-1990-uch-tepe-2.pdf" + ] + }, + { + "title": "The Research Archives of the Oriental Institute: Introduction and Guide.", + "authors": [ + "The Oriental Institute." + ], + "series": "The Research Archives of the Oriental Institute: Introduction and Guide", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1990", + "isbn": "", + "extent": "Pp. 9; 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/research_archives_guide_1990.pdf" + ] + }, + { + "title": "Aqaba: \"Port of Palestine on the China Sea.\"", + "authors": [ + "D. Whitcomb." + ], + "series": "Aqaba: “Port of Palestine on the China Sea”", + "publisherLocation": "Chicago", + "publisher": [ + "Pp." + ], + "publicationDate": "28", + "isbn": "", + "extent": "Paperbound 5.25 x 7.75 in / 14 x 20 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc_aqaba.pdf" + ] + }, + { + "title": "Egyptology at the Oriental Institute of the University of Chicago.", + "authors": [ + "The Oriental Institute." + ], + "series": "Egyptology at the Oriental Institute of the University of Chicago", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute of the University of Chicago" + ], + "publicationDate": "1983", + "isbn": "", + "extent": "Pp. 32; 39 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/egyptology.pdf" + ] + }, + { + "title": "Feasts for Pharaohs & Kings: A Cookbook by the Oriental Institute Museum, The University of Chicago.", + "authors": [ + "Anne S. Blomstrom," + ], + "series": "Chicago: The Oriental Institute Museum, The University of Chicago, 1983", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. xii +" + ], + "publicationDate": "268", + "isbn": "", + "extent": "5.5 x 8.5 in.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/feasts.pdf" + ] + }, + { + "title": "Quseir al-Qadim 1980: Preliminary Report.", + "authors": [ + "Donald S. WhitcombJanet H. Johnson." + ], + "series": "Quseir al-Qadim 1980: Preliminary Report", + "publisherLocation": "Chicago", + "publisher": [ + "American Research Center in Egypt Reports" + ], + "publicationDate": "7", + "isbn": "", + "extent": "Malibu: Undena Publications, 1982", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/quseir_1980.pdf" + ] + }, + { + "title": "A Guide to the Oriental Institute Museum.", + "authors": [ + "Leon Marfoe. Peter T. DanielsValerie M. Fargo," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1982", + "isbn": "", + "extent": "Pp. xiv + 139; 68 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Guide_to_OI_Museum_1982.pdf" + ] + }, + { + "title": "Uch Tepe I: Tell Razuk, Tell Ahmed Al-Mughir, Tell Ajamat.", + "authors": [ + "McG. Gibson," + ], + "series": "Uch Tepe I: Tell Razuk, Tell Ahmed Al-Mughir, Tell Ajamat", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1981", + "isbn": "9780918986344", + "extent": "Pp. xi + 197, 9 figures, 8 level/locus summaries, 116 plates, 27 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/uch_tepe1.pdf" + ] + }, + { + "title": "Heartland of Cities: Surveys of Ancient Settlement and Land Use on the Central Floodplain of the Euphrates.", + "authors": [ + "Robert McC. Adams." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1981", + "isbn": "", + "extent": "Pp. xx + 162; 53 figures, 26 illustrations, 22 tables, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/heartland_of_cities.pdf" + ] + }, + { + "title": "United with Eternity: A Concise Guide to the Monuments of Medinet Habu.", + "authors": [ + "William J. Murnane." + ], + "series": "United with Eternity: A Concise Guide to the Monuments of Medinet Habu", + "publisherLocation": "Chicago", + "publisher": [ + "Chicago and Cairo: The Oriental Institute of the University of Chicago and the American University in Cairo Press" + ], + "publicationDate": "1980", + "isbn": "0918986281", + "extent": "Pp. vi + 90; 71 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/united.pdf" + ] + }, + { + "title": "Prehistoric Research in Southeastern Anatolia — Guneydogu Anadolu Tarihoncesi Arastirmalari.", + "authors": [ + "Halet CambelRobert J. Braidwood." + ], + "series": "Prehistoric Research in Southeastern Anatolia 1", + "publisherLocation": "Chicago", + "publisher": [ + "Istanbul: Edebiyat Fakultesi Basimevi" + ], + "publicationDate": "1980", + "isbn": "", + "extent": "Pp. xv + 327; 49 illustrations; 25 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/prehistoric_research.pdf" + ] + }, + { + "title": "Remembrances of the Near East: The Photographs of Bonfils, 1867–1907.", + "authors": [ + "The Bonfils Firm." + ], + "series": "Remembrances of the Near East: The Photographs of Bonfils, 1867-1907", + "publisherLocation": "Chicago", + "publisher": [ + "Cambridge: The Harvard Semitic Museum International Museum of Photography at George Eastmann House and the Oriental Institute of the University of Chicago" + ], + "publicationDate": "1980", + "isbn": "", + "extent": "Pp. 23; 13 B&W illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/remembrances_near_east.pdf" + ] + }, + { + "title": "Quseir Al-Qadim 1978: Preliminary Report.", + "authors": [ + "D. S. WhitcombJ. H. Johnson." + ], + "series": "Quseir Al-Qadim 1978: Preliminary Report", + "publisherLocation": "Chicago", + "publisher": [ + "Cairo: Nafeh Press" + ], + "publicationDate": "1979", + "isbn": "9780936770017", + "extent": "Pp. x + 352, 57 figures, 89 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/quseir_1978.pdf" + ] + }, + { + "title": "Ancient Textiles from Nubia: Meroitic, X-Group, and Christian Fabrics from Ballana and Qustul.", + "authors": [ + "Christa C. Mayer ThurmanBruce Williams." + ], + "series": "Ancient Textiles from Nubia: Meroitic, X-Group, and Christian Fabrics from Ballana and Qustul", + "publisherLocation": "Chicago", + "publisher": [ + "The Art Institute of Chicago and the Oriental Institute" + ], + "publicationDate": "1979", + "isbn": "", + "extent": "Pp. 148; 170 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/textiles.pdf" + ] + }, + { + "title": "Early Hydraulic Civilization in Egypt: A Study in Cultural Ecology.", + "authors": [ + "Karl W. Butzer." + ], + "series": "Early Hydraulic Civilization in Egypt: A Study in Cultural Ecology", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. xv +" + ], + "publicationDate": "134", + "isbn": "", + "extent": "0-226-08635-6", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/early_hydraulic.pdf" + ] + }, + { + "title": "Old Babylonian Contracts From Nippur: Selected Texts From the University Museum University of Pennsylvania.", + "authors": [ + "Catalog by Elizabeth C. Stone. Photos by Paul E. Zimansky." + ], + "series": "Oriental Institute of the University of Chicago Microfiche Archives, Volume 1", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1976", + "isbn": "", + "extent": "Pp. x + 6; 70 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/old_babylonian_contracts.pdf" + ] + }, + { + "title": "John D. Rockefeller, Jr. Centenary Exhibition: A Productive Collaboration 1919–1935.", + "authors": [ + "" + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "The Oriental Institute" + ], + "publicationDate": "1974", + "isbn": "", + "extent": "Pp. 24; frontispiece, 3 figures, 1 table, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/rockefeller_centenary.pdf" + ] + }, + { + "title": "The Uruk Countryside: The Natural Setting of Urban Societies.", + "authors": [ + "Robert McC. AdamsHans J. Nissen." + ], + "series": "The Uruk Countryside: The Natural Setting of Urban Societies", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1972", + "isbn": "0226005003", + "extent": "Pp. x + 241; 83 figures, 2 chronological charts", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/uruk_countryside.pdf" + ] + }, + { + "title": "Letters From Mesopotamia: Official, Business, and Private Letters on Clay Tablets from Two Millennia.", + "authors": [ + "A. Leo Oppenheim." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1967", + "isbn": "", + "extent": "Pp. xii + 217; 16 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/Publications/Misc/misc_letters_from_mesopotamia.pdf" + ] + }, + { + "title": "Most Ancient Egypt.", + "authors": [ + "William C. Hayes." + ], + "series": "Most Ancient Egypt", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1965", + "isbn": "", + "extent": "Pp. xx + 160", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/most_ancient.pdf" + ] + }, + { + "title": "Land Behind Baghdad: A History of Settlement on the Diyala Plains.", + "authors": [ + "Robert McC. Adams." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1965", + "isbn": "", + "extent": "Pp. xvi + 187; frontispiece, 22 illustrations, 9 maps, 25 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/land_behind_baghdad.pdf" + ] + }, + { + "title": "Ancient Mesopotamia: Portrait of a Dead Civilization.", + "authors": [ + "A. Leo Oppenheim. Revised edition completed by Erica Reiner. Originally published in ; revised edition in" + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1964", + "isbn": "", + "extent": "Pp. xvi + 445; 15 plates, 3 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_mesopotamia.pdf" + ] + }, + { + "title": "Signs and Wonders upon Pharaoh: A History of American Egyptology.", + "authors": [ + "John A. Wilson." + ], + "series": "Signs and Wonders upon Pharaoh: A History of American Egyptology", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1964", + "isbn": "", + "extent": "Pp. xxv + 243; 32 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/signs.pdf" + ] + }, + { + "title": "Land Behind Baghdad: A History of Settlement on the Diyala Plains.", + "authors": [ + "Robert McC. Adams." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1965", + "isbn": "", + "extent": "Pp. xvi + 187; frontispiece, 22 illustrations, 9 maps, 25 tables", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/land_behind_baghdad.pdf" + ] + }, + { + "title": "Studies Presented to A. Leo Oppenheim, June 7, 1964.", + "authors": [ + "R. D. BiggsJ. A. Brinkman," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1964", + "isbn": "", + "extent": "Pp. vii + 200; 11 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oppenheim_studies.pdf" + ] + }, + { + "title": "Most Ancient Verse.", + "authors": [ + "Selectedtranslated by Thorkild JacobsenJohn A. Wilson." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1963", + "isbn": "", + "extent": "Pp. xii + 57", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/most_ancient_verse.pdf" + ] + }, + { + "title": "The Sumerians: Their History, Culture, and Character.", + "authors": [ + "Samuel Noah Kramer." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1963", + "isbn": "", + "extent": "Pp. xiv + 355; 23 plates, 6 figures, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sumerians.pdf" + ] + }, + { + "title": "City Invincible: A Symposium on Urbanization and Cultural Development in the Ancient Near East Held at the Oriental Institute of the University of Chicago, December 4–7, 1958.", + "authors": [ + "Carl H. Kraeling & Robert McC. Adams," + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1960", + "isbn": "", + "extent": "Pp. xiv + 448; frontispiece, 105 illustrations, 2 maps, 1 chart", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/city_invincible.pdf" + ] + }, + { + "title": "The Temple of King Sethos I at Abydos, Volume IV: The Second Hypostyle Hall.", + "authors": [ + "Copied by Amice M. Calverley", + "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." + ], + "series": "Sethos 4. The Temple of King Sethos I at Abydos, Volume IV: The Second Hypostyle Hall", + "publisherLocation": "Chicago", + "publisher": [ + "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" + ], + "publicationDate": "1958", + "isbn": "", + "extent": "Pp. xviii; 80 pls.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos4.pdf" + ] + }, + { + "title": "When Egypt Ruled the East.", + "authors": [ + "George SteindorffKeith C. Seele. Revised by Keith C. Seele. Originally published as second edition in" + ], + "series": "When Egypt Ruled the East", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "Pp. xvi + 288; 109 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/when_egypt.pdf" + ] + }, + { + "title": "The Culture of Ancient Egypt: An Interpretation of Ancient Egyptian Culture.", + "authors": [ + "John A. Wilson. Reprinted in" + ], + "series": "The Culture of Ancient Egypt: An Interpretation of Ancient Egyptian Culture", + "publisherLocation": "Chicago", + "publisher": [ + "Univeristy of Chicago Press" + ], + "publicationDate": "1951", + "extent": "Pp. xix + 332; 32 figures", + "isbn": "", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/burden.pdf" + ] + }, + { + "title": "Standard Operating Procedure for the Assyrian Dictionary.", + "authors": [ + "I. J. Gelb." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1954", + "isbn": "", + "extent": "Pp. 129", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/cad_operating_procedures.pdf" + ] + }, + { + "title": "Third Century Iran: Sapor and Kartir.", + "authors": [ + "Martin Sprengling." + ], + "series": "Chicago: University of Chicago Press, 1953", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. vii +" + ], + "publicationDate": "114", + "isbn": "", + "extent": "8.50 x 11.00 in.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/3rd_century_iran.pdf" + ] + }, + { + "title": "Medieval Islam: A Study in Cultural Orientation.", + "authors": [ + "Gustave E. von Grunebaum." + ], + "series": "Miscellaneous publication; Oriental Institute Essays 3", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. viii +" + ], + "publicationDate": "378", + "isbn": "", + "extent": "5.5 x 9.00 in.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/medieval_islam.pdf" + ] + }, + { + "title": "A Study of Writing.", + "authors": [ + "I. J. Gelb." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1952", + "isbn": "", + "extent": "Pp. xix + 319; 95 figures", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/study_writng.pdf" + ] + }, + { + "title": "The Burden of Egypt: An Interpretation of Ancient Egyptian Culture.", + "authors": [ + "John A. Wilson." + ], + "series": "The Culture of Ancient Egypt: An Interpretation of Ancient Egyptian Culture", + "publisherLocation": "Chicago", + "publisher": [ + "Univeristy of Chicago Press" + ], + "publicationDate": "1951", + "extent": "Pp. xix + 332; 32 figures", + "isbn": "", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/burden.pdf" + ] + }, + { + "title": "Reliefs and Inscriptions from the Tomb of Per-haps: An Oriental Institute Holiday Card.", + "authors": [ + "Early s." + ], + "series": "Reliefs and Inscriptions from the Tomb of Per-Haps: An Oriental Institute Holiday Card", + "publisherLocation": "Chicago", + "publisher": [], + "publicationDate": "", + "isbn": "", + "extent": "", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/misc-tomb-of-Per-haps.pdf" + ] + }, + { + "title": "Kingship and the Gods: A Study of Ancient Near Eastern Religion as the Integration of Society and Nature.", + "authors": [ + "Henri Frankfort." + ], + "series": "Kingship and the Gods: A Study of Ancient Near Eastern Religion of Society and Nature", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1948", + "isbn": "", + "extent": "Pp. xxv + 444; 52 illustrations", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/kingship.pdf" + ] + }, + { + "title": "History of the Persian Empire.", + "authors": [ + "Albert Ten Eyck Olmstead." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1948", + "isbn": "", + "extent": "Pp. xxxii + 558; frontispiece; 10 maps; 70 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/history_persian_empire.pdf" + ] + }, + { + "title": "The Intellectual Adventure of Ancient Man: An Essay on Speculative Thought in the Ancient Near East.", + "authors": [ + "Henri Frankfort", + "H. A. Frankfort", + "John A. Wilson", + "Thorkild Jacobsen,William A. Irwin." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1946", + "isbn": "", + "extent": "Pp. vii + 401", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/intellectual_adventure.pdf" + ] + }, + { + "title": "Two Queens of Baghdad: Mother and Wife of Harun al-Rashid.", + "authors": [ + "Nabia Abbott." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1946", + "isbn": "", + "extent": "Pp. ix + 277; frontispiece, 1 map, 1 table", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/two_queens_baghdad.pdf" + ] + }, + { + "title": "The Problem of Ezekiel: An Inductive Study.", + "authors": [ + "William A. Irwin." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1943", + "isbn": "", + "extent": "Pp. xx + 344", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/problem_ezekiel.pdf" + ] + }, + { + "title": "Aishah: The Beloved of Mohammed.", + "authors": [ + "Nabia Abbott." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "Pp. xiii + 230; frontispiece; 1 map, 1 genealogical chart", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/aishah.pdf" + ] + }, + { + "title": "The Rayy Expedition.", + "authors": [ + "Erich F. Schmidt." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago. The Oriental Institute. Aerial Survey Expedition" + ], + "publicationDate": "1942", + "isbn": "", + "extent": "24 mounted ill.; 52 x 39 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/rayy_expedition.pdf" + ] + }, + { + "title": "The Expedition to Luristan.", + "authors": [ + "Erich F. Schmidt." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1941", + "isbn": "", + "extent": "17 mounted ill.; 52 x 38 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/expedition_to_luristan.pdf" + ] + }, + { + "title": "The Persepolis Expedition.", + "authors": [ + "Erich F. Schmidt." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago. The Oriental Institute. Aerial Survey Expedition" + ], + "publicationDate": "1941", + "isbn": "", + "extent": "17 mounted ill.; 52 x 38 cm", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/persepolis_expedition.pdf" + ] + }, + { + "title": "Flights Over Ancient Cities of Iran.", + "authors": [ + "Erich F. Schmidt." + ], + "series": "Special Publication of the Oriental Institute of the University of Chicago", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1940", + "isbn": "0918986966", + "extent": "Pp. xxii + 104; 119 plates; 6 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/flights_over_iran.pdf" + ] + }, + { + "title": "A Political History of Parthia.", + "authors": [ + "Neilson C. Debevoise." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xliii + 303; frontispiece [Coin of King Mithradates II]; 1 map [The Near and Middle East in Parthian Times]", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/political_history_parthia.pdf" + ] + }, + { + "title": "The Temple of King Sethos I at Abydos, Volume III: The Osiris Complex.", + "authors": [ + "Copied by Amice M. Calverley", + "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." + ], + "series": "Sethos 3. The Temple of King Sethos I at Abydos, Volume III: The Osiris Complex", + "publisherLocation": "Chicago", + "publisher": [ + "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xi; 65 pls.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos3.pdf" + ] + }, + { + "title": "The History of Early Iran.", + "authors": [ + "George G. Cameron." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xvi + 260; 5 tables; 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/history_early_iran.pdf" + ] + }, + { + "title": "They Wrote on Clay: The Babylonian Tablets Speak Today.", + "authors": [ + "By Edward Chiera. Edited by George G. Cameron." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1938", + "isbn": "", + "extent": "Pp. xv + 235; frontispiece, 105 illustrations, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/they_wrote_on-clay.pdf" + ] + }, + { + "title": "Syrian Expedition: The Oriental Institute of the University of Chicago. The Oriental Institute.", + "authors": [ + "" + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "Oriental Institute Bulletin" + ], + "publicationDate": "1", + "isbn": "", + "extent": "Chicago: University of Chicago Press, 1937", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/syrian_expedition.pdf" + ] + }, + { + "title": "Ancient Egyptian Paintings Selected, Copied, and Described. Volume III: Descriptive Text.", + "authors": [ + "Nina M. Davies", + "with the editorial assistance of Alan H. Gardiner." + ], + "series": "Ancient Egyptian Paintings Selected, Copied, and Described Volume III: Descriptive Text", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. xlviii + 209", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/paintings3.pdf" + ] + }, + { + "title": "Ancient Egyptian Paintings Selected, Copied, and Described. Volume II: Plates LIII–CIV.", + "authors": [ + "Nina M. Davies", + "with the editorial assistance of Alan H. Gardiner." + ], + "series": "Ancient Egyptian Paintings, Volume II: Plates LIII–CIV", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. vi + 52 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/paintings2.pdf" + ] + }, + { + "title": "Ancient Egyptian Paintings Selected, Copied, and Described. Volume I: Plates I–LII.", + "authors": [ + "Nina M. Davies", + "with the editorial assistance of Alan H. Gardiner." + ], + "series": "Ancient Egyptian Paintings, Volume I: Plates I–LII", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. vi + 52 plates", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/paintings1.pdf" + ] + }, + { + "title": "Service in the Memory of James Henry Breasted.", + "authors": [ + "" + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. 9", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/breasted_memorial.pdf" + ] + }, + { + "title": "The Oriental Institute of the University of Chicago: Fifth Edition.", + "authors": [ + "Originally published between –" + ], + "series": "The Oriental Institute of the University of Chicago: Fifth Edition", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press issued sometime" + ], + "publicationDate": "1936", + "isbn": "", + "extent": "Pp. 20; 19 B&W illustrations, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_fifth_handbook.pdf" + ] + }, + { + "title": "The Temple of King Sethos I at Abydos, Volume II: The Chapels of Amen-Re', Re'-Harakhti, Ptah, and King Sethos.", + "authors": [ + "Copied by Amice M. Calverley", + "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." + ], + "series": "Sethos 2. The Temple of King Sethos I at Abydos, Volume II: The Chapels of Amen-Re', Re'-Harakhti, Ptah, and King Sethos", + "publisherLocation": "Chicago", + "publisher": [ + "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. vii; 46 pls.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos2.pdf" + ] + }, + { + "title": "The Oriental Institute of the University of Chicago: Fourth Edition.", + "authors": [ + "" + ], + "series": "The Oriental Institute of the University of Chicago: Fourth Edition", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1935", + "isbn": "", + "extent": "Pp. 81; 63 illustrations, 2 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_fourth_handbook.pdf" + ] + }, + { + "title": "The Temple of King Sethos I at Abydos, Volume I: The Chapels of Osiris, Isis and Horus.", + "authors": [ + "Copied by Amice M. Calverley", + "with the assistance of Myrtle F. Broome,edited by Alan H. Gardiner." + ], + "series": "Sethos 1. The Temple of King Sethos I at Abydos, Volume I: The Chapels of Osiris, Isis and Horus", + "publisherLocation": "Chicago", + "publisher": [ + "London: The Egypt Exploration Society; The Oriental Institute of the University of Chicago" + ], + "publicationDate": "1933", + "isbn": "", + "extent": "Pp. xi; 40 pls.", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/sethos1.pdf" + ] + }, + { + "title": "The Oriental Institute.", + "authors": [ + "James Henry Breast" + ], + "series": "The University of Chicago Survey 12", + "publisherLocation": "Chicago", + "publisher": [ + "Pp. xxiii +" + ], + "publicationDate": "455", + "isbn": "", + "extent": "Clothbound 5.25 x 7.50 in", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/The_Oriental_Institute_Breasted.pdf" + ] + }, + { + "title": "The Oriental Institute of the University of Chicago: Third Edition.", + "authors": [ + "" + ], + "series": "The Oriental Institute of the University of Chicago: Third Edition", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1931", + "isbn": "", + "extent": "Pp. 68; 61 illustrations, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_third_handbook.pdf" + ] + }, + { + "title": "The Oriental Institute: General Circular No. 2, 1928.", + "authors": [ + "" + ], + "series": "The Oriental Institute: General Circular No. 2, 1928", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1928", + "isbn": "", + "extent": "Pp. 36; 31 B&W illustrations, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_general_circular_1928.pdf" + ] + }, + { + "title": "Ancient Records of Assyria and Babylonia Volume 2: Historical Records of Assyria From Sargon to the End.", + "authors": [ + "Daniel David Luckenbill." + ], + "series": "Ancient Records of Assyria and Babylonia 2", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1927", + "isbn": "", + "extent": "Pp. xii + 504", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_records_assyria2.pdf" + ] + }, + { + "title": "Ancient Records of Assyria and Babylonia Volume 1: Historical Records of Assyria From the Earliest Times to Sargon.", + "authors": [ + "Daniel David Luckenbill." + ], + "series": "Ancient Records of Assyria and Babylonia 1", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1926", + "isbn": "", + "extent": "Pp. xvi + 297", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/ancient_records_assyria1.pdf" + ] + }, + { + "title": "The Oriental Institute: General Circular No. 1, 1926.", + "authors": [ + "" + ], + "series": "The Oriental Institute: General Circular No. 1, 1926", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1926", + "isbn": "", + "extent": "Pp. 23; 21 B&W illustrations, 1 map", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/oi_general_circular_1926.pdf" + ] + }, + { + "title": "History of Assyria.", + "authors": [ + "Albert T. Olmstead." + ], + "series": "", + "publisherLocation": "Chicago", + "publisher": [ + "University of Chicago Press" + ], + "publicationDate": "1923", + "isbn": "", + "extent": "Pp. xxx + 695; 176 figures, 13 maps", + "url": [ + "https://isac.uchicago.edu//sites/default/files/uploads/shared/docs/history_assyria.pdf" + ] + } +] \ No newline at end of file